20 #include <cudf/utilities/default_stream.hpp>
A non-owning, immutable view of device data as a column of elements, some of which may be null as ind...
size_type num_children() const noexcept
Returns the number of child columns.
auto child_begin() const noexcept
Returns iterator to the beginning of the ordered sequence of child column-views.
auto child_end() const noexcept
Returns iterator to the end of the ordered sequence of child column-views.
size_type null_count() const
Returns the count of null elements.
size_type size() const noexcept
Returns the number of elements in the column.
size_type offset() const noexcept
Returns the index of the first element relative to the base memory allocation, i.e....
bool has_nulls() const
Indicates if the column contains null elements, i.e., null_count() > 0
bitmask_type const * null_mask() const noexcept
Returns raw pointer to the underlying bitmask allocation.
Given a column view of struct type, an instance of this class provides a wrapper on this compound col...
column_view get_sliced_child(int index, rmm::cuda_stream_view stream=cudf::get_default_stream()) const
Returns the internal child column, applying any offset from the root.
column_view parent() const
Returns the parent column.
structs_column_view & operator=(structs_column_view const &)=default
Copy assignment operator.
structs_column_view(column_view const &col)
Construct a new structs column view object from a column view.
structs_column_view(structs_column_view &&)=default
Move constructor.
structs_column_view(structs_column_view const &)=default
Copy constructor.
structs_column_view & operator=(structs_column_view &&)=default
Move assignment operator.
Class definition for cudf::column.
column view class definitions
rmm::cuda_stream_view const get_default_stream()
Get the current default stream.