Skip to content

Instantly share code, notes, and snippets.

@cgoldsby
Created September 6, 2017 17:56
Show Gist options
  • Save cgoldsby/9d4f6abb6e9961e566bb1ab0506e0b3c to your computer and use it in GitHub Desktop.
Save cgoldsby/9d4f6abb6e9961e566bb1ab0506e0b3c to your computer and use it in GitHub Desktop.
func myFunction(value: Any?) {
guard let _ = value else { return valueIsNilDoSomething() }
valueIsNotNilDoSomethingElse()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment