side_type.hpp
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2022-2024, NVIDIA CORPORATION.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 #pragma once
6 
7 #include <cudf/utilities/export.hpp>
8 
9 namespace CUDF_EXPORT cudf {
10 namespace strings {
20 enum class side_type {
21  LEFT,
22  RIGHT,
23  BOTH
24 };
25  // end of doxygen group
27 } // namespace strings
28 } // namespace CUDF_EXPORT cudf
side_type
Direction identifier for cudf::strings::strip and cudf::strings::pad functions.
Definition: side_type.hpp:20
@ BOTH
strip/pad characters from the beginning and end of the string
cuDF interfaces
Definition: host_udf.hpp:26