Skip to content

Instantly share code, notes, and snippets.

@jimmythai
Created November 26, 2019 15:16
Show Gist options
  • Save jimmythai/2946ddb3893bb1a8471142cd9b6f281c to your computer and use it in GitHub Desktop.
Save jimmythai/2946ddb3893bb1a8471142cd9b6f281c to your computer and use it in GitHub Desktop.
extension Collection where Indices.Iterator.Element == Index {
public subscript(safe index: Index) -> Iterator.Element? {
return (startIndex <= index && index < endIndex) ? self[index] : nil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment