Skip to content

Instantly share code, notes, and snippets.

@vinczebalazs
Last active January 25, 2020 22:27
Show Gist options
  • Save vinczebalazs/431089e0152810f0c154ec5e5d54ac4d to your computer and use it in GitHub Desktop.
Save vinczebalazs/431089e0152810f0c154ec5e5d54ac4d to your computer and use it in GitHub Desktop.
Array + IndexPath subscript.
extension Array {
subscript(indexPath: IndexPath) -> Element {
self[indexPath.row]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment