Skip to content

Instantly share code, notes, and snippets.

@yojkim
Created January 1, 2021 13:13
Show Gist options
  • Save yojkim/3f1f29846e6136990bf235730f65f12e to your computer and use it in GitHub Desktop.
Save yojkim/3f1f29846e6136990bf235730f65f12e to your computer and use it in GitHub Desktop.
extension Collection {
subscript (safe index: Index) -> Element? {
return indices.contains(index) ? self[index] : nil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment