Skip to content

Instantly share code, notes, and snippets.

@motokiee
Created December 26, 2015 00:39
Show Gist options
  • Save motokiee/dcc94a88519f1c80233d to your computer and use it in GitHub Desktop.
Save motokiee/dcc94a88519f1c80233d to your computer and use it in GitHub Desktop.
なるほどな〜 #CodePiece
public mutating func next() -> Element? {
guard let b = base.next() else { return nil }
defer { count += 1 }
return (index: count, element: b)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment