Skip to content

Instantly share code, notes, and snippets.

@ehmo
Created March 2, 2017 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ehmo/a447bae8155a758e07bbf6e875b6cad8 to your computer and use it in GitHub Desktop.
Save ehmo/a447bae8155a758e07bbf6e875b6cad8 to your computer and use it in GitHub Desktop.
// define constants for bytesize
type ByteSize float64
const (
_ = iota
KB ByteSize = 1 << (10 * iota)
MB
GB
TB
PB
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment