Skip to content

Instantly share code, notes, and snippets.

@owensd
Created March 20, 2015 03:09
Show Gist options
  • Save owensd/27653b7ebeb550ddb3f0 to your computer and use it in GitHub Desktop.
Save owensd/27653b7ebeb550ddb3f0 to your computer and use it in GitHub Desktop.
A simple extension to provide optional indexing into Arrays.
extension Array {
func get(index: Int) -> T? {
if 0 <= index && index < self.count {
return self[index]
}
return nil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment