Files | |
| file | dictionary.hpp |
| Concrete type definition for dictionary columns. | |
Classes | |
| class | cudf::dictionary_column_view |
| A wrapper class for operations on a dictionary column. More... | |
| struct | cudf::dictionary_wrapper< IndexType > |
| A strongly typed wrapper for indices in a DICTIONARY type column. More... | |
Typedefs | |
| using | cudf::dictionary32 = dictionary_wrapper< int32_t > |
| 32-bit integer indexed dictionary wrapper | |
Functions | |
| template<typename Integer > | |
| CUDF_HOST_DEVICE bool | cudf::operator== (dictionary_wrapper< Integer > const &lhs, dictionary_wrapper< Integer > const &rhs) |
| Wqual to operator for dictionary_wrapper. More... | |
| template<typename Integer > | |
| CUDF_HOST_DEVICE bool | cudf::operator!= (dictionary_wrapper< Integer > const &lhs, dictionary_wrapper< Integer > const &rhs) |
| Not equal to operator for dictionary_wrapper. More... | |
| template<typename Integer > | |
| CUDF_HOST_DEVICE bool | cudf::operator<= (dictionary_wrapper< Integer > const &lhs, dictionary_wrapper< Integer > const &rhs) |
| Less than or equal to operator for dictionary_wrapper. More... | |
| template<typename Integer > | |
| CUDF_HOST_DEVICE bool | cudf::operator>= (dictionary_wrapper< Integer > const &lhs, dictionary_wrapper< Integer > const &rhs) |
| Greater than or equal to operator for dictionary_wrapper. More... | |
| template<typename Integer > | |
| constexpr CUDF_HOST_DEVICE bool | cudf::operator< (dictionary_wrapper< Integer > const &lhs, dictionary_wrapper< Integer > const &rhs) |
| Less than operator for dictionary_wrapper. More... | |
| template<typename Integer > | |
| CUDF_HOST_DEVICE bool | cudf::operator> (dictionary_wrapper< Integer > const &lhs, dictionary_wrapper< Integer > const &rhs) |
| Greater than operator for dictionary_wrapper. More... | |
|
inline |
Not equal to operator for dictionary_wrapper.
| Integer | Index type |
| lhs | Left hand side of comparison |
| rhs | Right hand side of comparison |
Definition at line 151 of file dictionary.hpp.
|
inlineconstexpr |
Less than operator for dictionary_wrapper.
| Integer | Index type |
| lhs | Left hand side of comparison |
| rhs | Right hand side of comparison |
Definition at line 196 of file dictionary.hpp.
|
inline |
Less than or equal to operator for dictionary_wrapper.
| Integer | Index type |
| lhs | Left hand side of comparison |
| rhs | Right hand side of comparison |
Definition at line 166 of file dictionary.hpp.
|
inline |
Wqual to operator for dictionary_wrapper.
| Integer | Index type |
| lhs | Left hand side of comparison |
| rhs | Right hand side of comparison |
Definition at line 136 of file dictionary.hpp.
|
inline |
Greater than operator for dictionary_wrapper.
| Integer | Index type |
| lhs | Left hand side of comparison |
| rhs | Right hand side of comparison |
Definition at line 211 of file dictionary.hpp.
|
inline |
Greater than or equal to operator for dictionary_wrapper.
| Integer | Index type |
| lhs | Left hand side of comparison |
| rhs | Right hand side of comparison |
Definition at line 181 of file dictionary.hpp.