Skip to content

Instantly share code, notes, and snippets.

@littlebobert
Created March 17, 2016 21:28
Show Gist options
  • Save littlebobert/ea9d948b596f2f62638d to your computer and use it in GitHub Desktop.
Save littlebobert/ea9d948b596f2f62638d to your computer and use it in GitHub Desktop.
extension String {
subscript (i: Int) -> Character {
return self[self.startIndex.advanceBy(i)]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment