macro_rules! n_mib_bytes {
    () => { ... };
    ($x:expr) => { ... };
    ($x:expr, $t:ty) => { ... };
}
Expand description

Convert n MiB to bytes.

Examples

let result = byte_unit::n_mib_bytes!(4);

assert_eq!(4194304, result);
let result = byte_unit::n_mib_bytes!(2.5, f64);

assert_eq!(2621440, result);