Skip to content

Instantly share code, notes, and snippets.

@nickarthur
Forked from mildocjr/iflet1.swift
Created February 5, 2019 21:39
Show Gist options
  • Select an option

  • Save nickarthur/3e8a772050db1052eae2a82dfcc389e0 to your computer and use it in GitHub Desktop.

Select an option

Save nickarthur/3e8a772050db1052eae2a82dfcc389e0 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