Macro byte_unit::n_pib_bytes[][src]

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

Convert n PiB to bytes.

Examples

extern crate byte_unit;

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

assert_eq!(4503599627370496, result);
extern crate byte_unit;

let result = byte_unit::n_pib_bytes!(2.5, f64);

assert_eq!(2814749767106560, result);