Skip to content

Instantly share code, notes, and snippets.

@t-ob
Created July 12, 2016 14:46
Show Gist options
  • Save t-ob/76705a70f76c87aae3aad848c9344c40 to your computer and use it in GitHub Desktop.
Save t-ob/76705a70f76c87aae3aad848c9344c40 to your computer and use it in GitHub Desktop.
func doSomething(foo: SomeFoo?) {
guard let foo = foo else {
return
}
// foo now unwrapped outside of guard scope.
foo.bar
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment