#include <cstdint>
#include <type_traits>
命名空间 | |
cudf | |
cuDF 接口 | |
cudf::strings | |
字符串列 API。 | |
枚举 | |
enum | cudf::strings::string_character_types : uint32_t { cudf::strings::DECIMAL = 1 << 0 , cudf::strings::NUMERIC = 1 << 1 , cudf::strings::DIGIT = 1 << 2 , cudf::strings::ALPHA = 1 << 3 , cudf::strings::SPACE = 1 << 4 , cudf::strings::UPPER = 1 << 5 , cudf::strings::LOWER = 1 << 6 , cudf::strings::ALPHANUM = DECIMAL | NUMERIC | DIGIT | ALPHA , cudf::strings::CASE_TYPES = UPPER | LOWER , cudf::strings::ALL_TYPES = ALPHANUM | CASE_TYPES | SPACE } |
字符类型值。这些类型可以通过按位或运算进行组合,以检查任意类型的组合。更多... | |
函数 | |
constexpr string_character_types | cudf::strings::operator| (string_character_types lhs, string_character_types rhs) |
用于组合 string_character_types 的按位或运算符。更多... | |
constexpr string_character_types & | cudf::strings::operator|= (string_character_types &lhs, string_character_types rhs) |
用于组合 string_character_types 的复合赋值按位或运算符。更多... | |