|
std::unique_ptr< column > | cudf::strings::to_integers (strings_column_view const &input, data_type output_type, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Returns a new integer numeric column parsing integer values from the provided strings column. More...
|
|
std::unique_ptr< column > | cudf::strings::from_integers (column_view const &integers, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Returns a new strings column converting the integer values from the provided column into strings. More...
|
|
std::unique_ptr< column > | cudf::strings::is_integer (strings_column_view const &input, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Returns a boolean column identifying strings in which all characters are valid for conversion to integers. More...
|
|
std::unique_ptr< column > | cudf::strings::is_integer (strings_column_view const &input, data_type int_type, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Returns a boolean column identifying strings in which all characters are valid for conversion to integers. More...
|
|
std::unique_ptr< column > | cudf::strings::hex_to_integers (strings_column_view const &input, data_type output_type, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Returns a new integer numeric column parsing hexadecimal values from the provided strings column. More...
|
|
std::unique_ptr< column > | cudf::strings::is_hex (strings_column_view const &input, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Returns a boolean column identifying strings in which all characters are valid for conversion to integers from hex. More...
|
|
std::unique_ptr< column > | cudf::strings::integers_to_hex (column_view const &input, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Returns a new strings column converting integer columns to hexadecimal characters. More...
|
|