Decimal64
Fast fixed point arithmetic that only uses u64 as internal representation. Scale is expressed
in form of generic ScaleMetrics parameter. Loosely inspired by Java Decimal4j.
Example
let d1 = from_str.unwrap;
let d2 = from_str.unwrap;
let d3 = d1 + d2;
assert_eq!;