side_type.hpp
转到此文件的文档。
1 /*
2  * 版权所有 (c) 2022-2024, NVIDIA CORPORATION.
3  *
4  * 根据 Apache 许可证 2.0 版(以下简称“许可证”)获得许可;
5  * 除非遵守本许可证的规定,否则您不得使用此文件。
6  * 您可以获取许可证的副本,地址为
7  *
8  * https://apache.ac.cn/licenses/LICENSE-2.0
9  *
10  * 除非适用法律要求或书面同意,根据许可证分发的软件均按“原样”提供,
11  * 不附带任何明示或暗示的保证或条件。
12  * 请参阅许可证以了解特定语言的权限和限制。
13  *
14  * limitations under the License.
15  */
16 #pragma once
17 
18 #include <cudf/utilities/export.hpp>
19 
20 namespace CUDF_EXPORT cudf {
21 namespace strings {
31 enum class side_type {
32  LEFT,
33  RIGHT,
34  BOTH
35 };
36  // doxygen 组结束
38 } // namespace strings
39 } // namespace CUDF_EXPORT cudf
side_type
cudf::strings::strip 和 cudf::strings::pad 函数的方向标识符。
@ BOTH
从字符串的开头和结尾剥离/填充字符
cuDF 接口
定义: host_udf.hpp:37