Skip to content

Instantly share code, notes, and snippets.

@sssbohdan
Created January 17, 2021 10:49
Show Gist options
  • Save sssbohdan/d1d18f4b3e379a57721e40f63075c1a6 to your computer and use it in GitHub Desktop.
Save sssbohdan/d1d18f4b3e379a57721e40f63075c1a6 to your computer and use it in GitHub Desktop.
IteratorProtocol
public protocol IteratorProtocol {
associatedtype Element
mutating func next() -> Self.Element?
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment