Skip to content

Instantly share code, notes, and snippets.

@mildocjr
Created August 11, 2018 01:53
Show Gist options
  • Save mildocjr/e9ccc907b0707da660e64d13e33bea90 to your computer and use it in GitHub Desktop.
Save mildocjr/e9ccc907b0707da660e64d13e33bea90 to your computer and use it in GitHub Desktop.
if-let-1
if let actualInteger = possibleInteger as? Int {
// do stuff with actual integer
print(actualInteger) // prints 3
print(possibleInteger) // prints Optional(3)
// actualInteger's scope ends here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment