Macro byte_unit::n_tb_bytes

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

Convert n TB to bytes.

Examples

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

assert_eq!(4000000000000, result);
let result = byte_unit::n_tb_bytes!(2.5, f64);

assert_eq!(2500000000000, result);