Are there any libraries that provide an object/class with implicits conversions (from Int, Long, Float) for human readable file size units (like Duration).
With Duration
you can do this:
11.millis
1.5.minutes
10.hours
I wonder if there is some library that would allow me to do:
1.gibabyte
1024.megabytes
10.gibibytes
10.GB
50.GiB
I know I could implement this myself, but I'm trying to not reinvent the wheel.