Skip to content

Instantly share code, notes, and snippets.

@iscrz
Created December 12, 2016 00:53
Show Gist options
  • Save iscrz/0e4fe89d3f8705674f1ccf69d7473a7d to your computer and use it in GitHub Desktop.
Save iscrz/0e4fe89d3f8705674f1ccf69d7473a7d to your computer and use it in GitHub Desktop.
Swift 3 Array Wrap
extension Array {
subscript (wrap index: Int) -> Element {
return self[index - Int(floor(Double(index) / Double(count))) * count]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment