Skip to content

Instantly share code, notes, and snippets.

@andeeliao
Created December 24, 2023 03:54
Show Gist options
  • Save andeeliao/7ae8e2af5a43a6c0187b9068ced744f1 to your computer and use it in GitHub Desktop.
Save andeeliao/7ae8e2af5a43a6c0187b9068ced744f1 to your computer and use it in GitHub Desktop.
is not nil check
extension Optional {
var isNotNil: Bool {
return self != nil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment