IntFlag.isNull

false if this IntFlag is set to one of the error signals listed above. Otherwise true.

struct IntFlag
pragma(inline, true) @property
bool
isNull
const pure @safe nothrow @nogc
(
)

Examples

assert( IntFlag.init.isNull);
assert(!IntFlag.div0.isNull);

Meta