Skip to content

Instantly share code, notes, and snippets.

@laevandus
Created September 8, 2023 08:44
Show Gist options
  • Save laevandus/4aecb3f5282156d4ce5c6f3aa0e46ee0 to your computer and use it in GitHub Desktop.
Save laevandus/4aecb3f5282156d4ce5c6f3aa0e46ee0 to your computer and use it in GitHub Desktop.
let delegates: [SomeDelegate?] = // …
for case let delegate? in delegates {
print(delegate) // prints only non-nil delegates
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment