nullate::DYNAMIC
defers the determination of nullability to run time rather than compile time. The calling code is responsible for specifying whether or not nulls are present using the constructor parameter at run time.
More...
Public Member Functions | |
constexpr | DYNAMIC (bool b) noexcept |
Create a runtime nullate object. More... | |
constexpr CUDF_HOST_DEVICE | operator bool () const noexcept |
Returns true if nulls are expected in the operation in which this object is applied. More... | |
Public Attributes | |
bool | value |
True if nulls are expected. | |
nullate::DYNAMIC
defers the determination of nullability to run time rather than compile time. The calling code is responsible for specifying whether or not nulls are present using the constructor parameter at run time.
Definition at line 55 of file column_device_view_base.cuh.
|
inlineexplicitconstexprnoexcept |
Create a runtime nullate object.
b | True if nulls are expected in the operation in which this object is applied. |
Definition at line 65 of file column_device_view_base.cuh.
|
inlineconstexprnoexcept |
Returns true if nulls are expected in the operation in which this object is applied.
true
if nulls are expected in the operation in which this object is applied, otherwise false Definition at line 72 of file column_device_view_base.cuh.