🅿️IteratorProtocol

circle-info
public protocol IteratorProtocol {
  associatedtype Element
  mutating func next() -> Element?
}

Last updated