pub type D9 = Decimal32<9>;Expand description
A Decimal32 type with nine significant figures
after the decimal point.
use high_roller::decimal::D9;
assert_eq!(D9::MAX.get(), 2.147483647_f64);
assert_eq!(D9::MIN.get(), -2.147483648_f64);
assert_eq!(D9::MIN_UNIT.get(), 0.000000001_f64);Aliased Typeยง
pub struct D9(/* private fields */);