Skip to content

Instantly share code, notes, and snippets.

@darlanmendonca
Last active June 27, 2016 14:13
Show Gist options
  • Save darlanmendonca/a5417d587e547363d5d2cac088fbad45 to your computer and use it in GitHub Desktop.
Save darlanmendonca/a5417d587e547363d5d2cac088fbad45 to your computer and use it in GitHub Desktop.
Swift Number sizes

Integers

Type Min Max
Int8 -128 127
UInt8 0 255
Int16 -32.768 32.767
UInt16 0 65.535
Int32 -2.147.483.648 2.147.483.647
UInt32 0 4.294.967.295
Int64 -9.223.372.036.854.775.808 9.223.372.036.854.775.807
UInt64 0 18.446.744.073.709.551.615
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment