big-bytes 1.0.0

Converts a number to the largest possible multiple of the byte unit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# big-bytes
[![GitHub Release Date](https://img.shields.io/github/release-date/spenserblack/big-bytes-rs)](https://github.com/spenserblack/big-bytes-rs/releases/latest)

Converts a number to the largest possible multiple of the byte unit

## Example

```rust
use big_bytes::BigByte;

let bytes = 2.456 * 1024_f32.powi(3);

assert_eq!("2.46 GiB", bytes.big_byte(2));
```