Strings APIs for copying strings. More...
#include <cudf/scalar/scalar.hpp>
#include <cudf/strings/strings_column_view.hpp>
#include <cudf/utilities/memory_resource.hpp>
Go to the source code of this file.
Namespaces | |
cudf | |
cuDF interfaces | |
cudf::strings | |
Strings column APIs. | |
Functions | |
std::unique_ptr< string_scalar > | cudf::strings::repeat_string (string_scalar const &input, size_type repeat_times, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
Repeat the given string scalar a given number of times. More... | |
std::unique_ptr< column > | cudf::strings::repeat_strings (strings_column_view const &input, size_type repeat_times, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
Repeat each string in the given strings column a given number of times. More... | |
std::unique_ptr< column > | cudf::strings::repeat_strings (strings_column_view const &input, column_view const &repeat_times, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
Repeat each string in the given strings column by the numbers of times given in another numeric column. More... | |
Strings APIs for copying strings.
Definition in file repeat_strings.hpp.