pub type D4 = Decimal32<4>;Expand description
A Decimal32 type with four significant figures
after the decimal point.
use high_roller::decimal::D4;
assert_eq!(D4::MAX.get(), 214748.3647_f64);
assert_eq!(D4::MIN.get(), -214748.3648_f64);
assert_eq!(D4::MIN_UNIT.get(), 0.0001_f64);Aliased Typeยง
pub struct D4(/* private fields */);