Determines if x is normalized. This operation is silent, no error flags are set and no exceptions are thrown.
a _decimal value
true if x is normal, false otherwise (NaN, infinity, zero, subnormal)
assert(isNormal(decimal32.max)); assert(!isNormal(decimal64.nan)); assert(!isNormal(decimal32("0x1p-101")));
See Implementation
Determines if x is normalized. This operation is silent, no error flags are set and no exceptions are thrown.