Skip to content

Instantly share code, notes, and snippets.

@Kievkao
Created October 12, 2020 06:31
Show Gist options
  • Save Kievkao/8a1ab5753af0e29d80ca1405f1996df9 to your computer and use it in GitHub Desktop.
Save Kievkao/8a1ab5753af0e29d80ca1405f1996df9 to your computer and use it in GitHub Desktop.
Safe collections access
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