true if the value is an array, false otherwise.bool isArray() @property const nothrow @nogc pure @safeCheck if this value is an array (Type.ARRAY).
More readable alternative to v.type == var.Type.ARRAY.
true if the value is an array, false otherwise.var a = var([1, 2, 3]);
assert(a.isArray);
var i = 42;
assert(!i.isArray);