Skip to content

Instantly share code, notes, and snippets.

@msewell
Created March 31, 2021 07:56
Show Gist options
  • Save msewell/6e7f70c78662a4c0600b28b5b574b918 to your computer and use it in GitHub Desktop.
Save msewell/6e7f70c78662a4c0600b28b5b574b918 to your computer and use it in GitHub Desktop.
First element in array matching type
extension Array {
func first<T>(_ matchingType: T.Type) -> T? {
first(where: { $0 is T }) as? T
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment