Converts a number to the largest possible multiple of the byte unit
```rust use big_bytes::BigByte;
let bytes = 2.456 * 1024_f32.powi(3);
asserteq!("2.46 GiB", bytes.bigbyte(2)); ```