Skip to content

Instantly share code, notes, and snippets.

@oisdk
Created July 4, 2015 09:48
Show Gist options
  • Save oisdk/e369d36324d5d2a63a2d to your computer and use it in GitHub Desktop.
Save oisdk/e369d36324d5d2a63a2d to your computer and use it in GitHub Desktop.
extension GeneratorType {
mutating func find(pred: Element -> Bool) -> Element? {
return next().flatMap { el in pred(el) ? el : find(pred) }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment