IntFlag.isNull

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

struct IntFlag
@property const pure nothrow @nogc
bool
isNull
()

Examples

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

Meta