Part 2 decimal definition

[Definition:] The value space of types derived from decimal with a value for
precision of p is the set of values i × 10^-n, where n and i are integers
such that p >= n >= 0 and the number of significant decimal digits in i is
less than or equal to p. 
I think the underlined can be more succinctly stated as: i modulo 10^p = 0. 

Received on Thursday, 2 November 2000 13:46:32 UTC