pair accessor for elements in a list_device_view
More...
Public Member Functions | |
| CUDF_HOST_DEVICE | pair_accessor (list_device_view const &_list) |
| constructor More... | |
| thrust::pair< T, bool > | operator() (cudf::size_type i) const |
| Accessor for the {data, validity} pair at the specified index. More... | |
Public Attributes | |
| list_device_view const & | list |
| The list_device_view to access. | |
pair accessor for elements in a list_device_view
This unary functor returns a pair of:
| T | The element-type of the list row |
Definition at line 246 of file list_device_view.cuh.
|
inlineexplicit |
constructor
| _list | The list_device_view whose rows are being accessed. |
Definition at line 254 of file list_device_view.cuh.
|
inline |
Accessor for the {data, validity} pair at the specified index.
| i | Index into the list_device_view |
Definition at line 262 of file list_device_view.cuh.