pub type D8 = Decimal32<8>;Expand description
A Decimal32 type with eight significant figures
after the decimal point.
use high_roller::decimal::D8;
assert_eq!(D8::MAX.get(), 21.47483647_f64);
assert_eq!(D8::MIN.get(), -21.47483648_f64);
assert_eq!(D8::MIN_UNIT.get(), 0.00000001_f64);Aliased Typeยง
pub struct D8(/* private fields */);