Checks whether a _decimal value is a power of ten. This operation is silent, no exception flags are set and no exceptions are thrown.
any _decimal value
true if x is power of ten, false otherwise (NaN, infinity, 0, negative)
assert (isPowerOf10(decimal32("1000"))); assert (isPowerOf10(decimal32("0.001")));
See Implementation
Checks whether a _decimal value is a power of ten. This operation is silent, no exception flags are set and no exceptions are thrown.