true if the value is numeric, false otherwise.bool isNumeric() @property const nothrow @nogc pure @safeCheck if this value is a numeric type.
Numeric types include: BYTE, UBYTE, SHORT, USHORT, INT, UINT, LONG, ULONG, FLOAT, DOUBLE, REAL.
true if the value is numeric, false otherwise.var i = 42;
assert(i.isNumeric);
var d = 3.14;
assert(d.isNumeric);
var s = "hello";
assert(!s.isNumeric);