Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 91c43bca4b910a9384c434d84820af30 > files > 2

golang-github-alecthomas-units-devel-0-0.1.mga7.noarch.rpm

# Units - Helpful unit multipliers and functions for Go

The goal of this package is to have functionality similar to the [time](http://golang.org/pkg/time/) package.

It allows for code like this:

```go
n, err := ParseBase2Bytes("1KB")
// n == 1024
n = units.Mebibyte * 512
```