Skip to content

Instantly share code, notes, and snippets.

@stevencurtis
Created November 20, 2019 12:19
Show Gist options
  • Save stevencurtis/bb5d5b04c253397ebe7e5e31224198bb to your computer and use it in GitHub Desktop.
Save stevencurtis/bb5d5b04c253397ebe7e5e31224198bb to your computer and use it in GitHub Desktop.
subscriptCollection
extension Collection {
subscript(index i : Index) -> Element? {
return indices.contains(i) ? self[i] : nil
}
}
sliceOfArray[index: 0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment