mutating func next() -> I.Element?
s5Utils16PeekableIteratorV4next7ElementQzSgyF
2YOYC
import Utils
struct PeekableIterator<I> where I : IteratorProtocol
associatedtype Element
The type of element traversed by the iterator.
init(_ inner: I)
var current: I.Element? { get }
mutating func peek() -> I.Element?