true if the value is null, false otherwise.bool isNull() @property const nothrow @nogc pure @safeCheck if this value is null (Type.NULL).
More readable alternative to v.type == var.Type.NULL.
true if the value is null, false otherwise.var n;
assert(n.isNull);
var i = 42;
assert(!i.isNull);