Strings column APIs for padding each string to a minimum width. More...
#include <cudf/column/column.hpp>#include <cudf/scalar/scalar.hpp>#include <cudf/strings/side_type.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< column > | cudf::strings::pad (strings_column_view const &input, size_type width, side_type side=side_type::RIGHT, std::string_view fill_char=" ", rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Add padding to each string using a provided character. More... | |
| std::unique_ptr< column > | cudf::strings::zfill (strings_column_view const &input, size_type width, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Add '0' as padding to the left of each string. More... | |
| std::unique_ptr< column > | cudf::strings::zfill_by_widths (strings_column_view const &input, column_view const &widths, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Add '0' as padding to the left of each string. More... | |
Strings column APIs for padding each string to a minimum width.
Definition in file padding.hpp.