20 #include <cudf/utilities/export.hpp>
27 namespace CUDF_EXPORT
cudf {
65 using column_view::is_empty;
67 using column_view::null_mask;
68 using column_view::offset;
69 using column_view::size;
A non-owning, immutable view of device data as a column of elements, some of which may be null as ind...
Given a column-view of strings type, an instance of this class provides a wrapper on this compound co...
strings_column_view(strings_column_view &&)=default
Move constructor.
size_type const * offset_iterator
offsets iterator type
char const * chars_iterator
character iterator type
strings_column_view(column_view strings_column)
Construct a new strings column view object from a column view.s.
column_view parent() const
Returns the parent column.
chars_iterator chars_begin(rmm::cuda_stream_view) const
Return an iterator for the chars child column.
strings_column_view(strings_column_view const &)=default
Copy constructor.
int64_t chars_size(rmm::cuda_stream_view stream) const noexcept
Returns the number of bytes in the chars child column.
strings_column_view & operator=(strings_column_view const &)=default
Copy assignment operator.
chars_iterator chars_end(rmm::cuda_stream_view stream) const
Return an end iterator for the offsets child column.
strings_column_view & operator=(strings_column_view &&)=default
Move assignment operator.
column_view offsets() const
Returns the internal column of offsets.
column view class definitions
cudf::size_type null_count(bitmask_type const *bitmask, size_type start, size_type stop, rmm::cuda_stream_view stream=cudf::get_default_stream())
Given a validity bitmask, counts the number of null elements (unset bits) in the range [start,...
int32_t size_type
Row index type for columns and tables.
bool has_nulls(table_view const &view)
Returns True if the table has nulls in any of its columns.