Skip to content

Instantly share code, notes, and snippets.

@Pearapps
Last active August 19, 2016 17:19
Show Gist options
  • Save Pearapps/ca25c19faaf277415b87 to your computer and use it in GitHub Desktop.
Save Pearapps/ca25c19faaf277415b87 to your computer and use it in GitHub Desktop.
extension CollectionType where Index: BidirectionalIndexType {
func lastIndexOf(isElement: Generator.Element -> Bool) -> Index? {
return indices.reverse().filter { return isElement(self[$0]) }.first
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment