25 namespace CUDF_EXPORT
cudf {
Given a column-view of lists type, an instance of this class provides a wrapper on this compound colu...
An owning class to represent a string in device memory.
Given a column-view of strings type, an instance of this class provides a wrapper on this compound co...
A set of cudf::column_view's of the same size.
Class definition for cudf::column.
rmm::cuda_stream_view const get_default_stream()
Get the current default stream.
rmm::device_async_resource_ref get_current_device_resource_ref()
Get the current device memory resource reference.
cuda::mr::async_resource_ref< cuda::mr::device_accessible > device_async_resource_ref
std::unique_ptr< column > concatenate(table_view const &strings_columns, string_scalar const &separator=string_scalar(""), string_scalar const &narep=string_scalar("", false), separator_on_nulls separate_nulls=separator_on_nulls::YES, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Row-wise concatenates the given list of strings columns and returns a single strings column result.
std::unique_ptr< column > join_list_elements(lists_column_view const &lists_strings_column, string_scalar const &separator=string_scalar(""), string_scalar const &narep=string_scalar("", false), separator_on_nulls separate_nulls=separator_on_nulls::YES, output_if_empty_list empty_list_policy=output_if_empty_list::EMPTY_STRING, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Given a lists column of strings (each row is a list of strings), concatenates the strings within each...
std::unique_ptr< column > join_strings(strings_column_view const &input, string_scalar const &separator=string_scalar(""), string_scalar const &narep=string_scalar("", false), rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Concatenates all strings in the column into one new string delimited by an optional separator string.
output_if_empty_list
Setting for specifying what will be output from join_list_elements when an input list is empty.
separator_on_nulls
Setting for specifying how separators are added with null strings elements.
@ NULL_ELEMENT
Empty list will result in a null.
@ EMPTY_STRING
Empty list will result in empty string.
Class definition for cudf::lists_column_view.
Class definitions for cudf::scalar.
Class definition for cudf::strings_column_view.
Class definitions for (mutable)_table_view