-
-
Save Cergoo/8009525 to your computer and use it in GitHub Desktop.
iota example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type ByteSize float64 | |
const ( | |
_ = iota // ignore first value by assigning to blank identifier | |
KB ByteSize = 1<<(10*iota) | |
MB | |
GB | |
TB | |
PB | |
EB | |
ZB | |
YB | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment