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 | 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 66 of file column_device_view.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 76 of file column_device_view.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 83 of file column_device_view.cuh.