Namespaces | Enumerations | Functions
char_types_enum.hpp File Reference
#include <cstdint>
#include <type_traits>

Go to the source code of this file.

Namespaces

 cudf
 cuDF interfaces
 
 cudf::strings
 Strings column APIs.
 

Enumerations

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
}
 Character type values. These types can be or'd to check for any combination of types. More...
 

Functions

constexpr string_character_types cudf::strings::operator| (string_character_types lhs, string_character_types rhs)
 OR operator for combining string_character_types. More...
 
constexpr string_character_types & cudf::strings::operator|= (string_character_types &lhs, string_character_types rhs)
 Compound assignment OR operator for combining string_character_types. More...