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