mutating func peek() -> I.Element?
s5Utils16PeekableIteratorV4peek7ElementQzSgyF
7UYAK
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 next() -> I.Element?