Converts a quantity of terabytes to bytes.
(size: V)
| 133 | |
| 134 | /// Converts a quantity of terabytes to bytes. |
| 135 | pub fn tb<V: Into<u64>>(size: V) -> u64 { |
| 136 | size.into() * TB |
| 137 | } |
| 138 | |
| 139 | /// Converts a quantity of tebibytes to bytes. |
| 140 | pub fn tib<V: Into<u64>>(size: V) -> u64 { |
no outgoing calls