true if the value is a string, false otherwise.bool isString() @property const nothrow @nogc pure @safeCheck if this value is a string (Type.STRING).
More readable alternative to v.type == var.Type.STRING.
true if the value is a string, false otherwise.var s = "hello";
assert(s.isString);
var i = 42;
assert(!i.isString);