Skip to content

Instantly share code, notes, and snippets.

@oisdk
Created November 27, 2015 19:05
Show Gist options
  • Save oisdk/f1321107ec352b4baa09 to your computer and use it in GitHub Desktop.
Save oisdk/f1321107ec352b4baa09 to your computer and use it in GitHub Desktop.
extension SequenceType {
func myForEach(@noescape f: Generator.Element -> ()) {
for x in self {
f(x)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment