Skip to content

Instantly share code, notes, and snippets.

@vinczebalazs
Created January 25, 2020 20:07
Show Gist options
  • Save vinczebalazs/f33f951fbdb3bd981bb46190212671c5 to your computer and use it in GitHub Desktop.
Save vinczebalazs/f33f951fbdb3bd981bb46190212671c5 to your computer and use it in GitHub Desktop.
Subscript Array with IndexPath
import Foundation
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