Converts a quantity of petabytes to bytes.
(size: V)
| 143 | |
| 144 | /// Converts a quantity of petabytes to bytes. |
| 145 | pub fn pb<V: Into<u64>>(size: V) -> u64 { |
| 146 | size.into() * PB |
| 147 | } |
| 148 | |
| 149 | /// Converts a quantity of pebibytes to bytes. |
| 150 | pub fn pib<V: Into<u64>>(size: V) -> u64 { |
no outgoing calls