Skip to content

Instantly share code, notes, and snippets.

@victorpanitz
Last active October 26, 2019 04:19
Show Gist options
  • Save victorpanitz/311b365e60203fc633654f44a217445c to your computer and use it in GitHub Desktop.
Save victorpanitz/311b365e60203fc633654f44a217445c to your computer and use it in GitHub Desktop.
func validation(valueA: Bool?, valueB: Bool?, valueC: Bool?) {
guard
let a = valueA,
let b = valueB,
let c = valueC,
b,!c
else {
view.showError("error")
return
}
view.setup(a, b, c)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment