Mutable value accessor of column without null bitmask. More...
Public Member Functions | |
| mutable_value_accessor (mutable_column_device_view &_col) | |
| Constructor. More... | |
| T & | operator() (cudf::size_type i) |
| Accessor. More... | |
Public Attributes | |
| mutable_column_device_view | col |
| mutable column view of column in device | |
Mutable value accessor of column without null bitmask.
A unary functor that accepts an index and returns a reference to the element at that index in the column.
| cudf::logic_error | if the column is nullable |
| cudf::logic_error | if column datatype and template T type mismatch |
| T | The type of elements in the column |
Definition at line 1007 of file column_device_view.cuh.
|
inline |
Constructor.
| [in] | _col | mutable column device view of cudf column |
Definition at line 1015 of file column_device_view.cuh.
|
inline |
Accessor.
| i | index of element to access |
i Definition at line 1026 of file column_device_view.cuh.