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