Skip to content

Instantly share code, notes, and snippets.

@vani2
Last active July 24, 2016 16:39
Show Gist options
  • Save vani2/9eee5e960f27e5506464c9a293502724 to your computer and use it in GitHub Desktop.
Save vani2/9eee5e960f27e5506464c9a293502724 to your computer and use it in GitHub Desktop.
//#1
guard
let data = ...,
let image = ...
else {
//...
return
}
//#2
guard let data = ...
let image = ...
else {
//...
return
}
//Простой случай - 1 переменная и только оператор return (может быть не Void)
guard let data = self.data else { return }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment