1
2
3
4
/// Multiplication factor of metric system (10³).
pub const METRIC: u64 = 1000;
/// Multiplication factor of binary system (2¹⁰).
pub const BINARY: u64 = 1024;