Type Aliasswift 6.1.2Swift
Element
typealias Element = Base.Elementtypealias Element = Base.Elementimport Swift@frozen struct IteratorAn iterator over the elements traversed by a base iterator that follow the initial consecutive elements that satisfy a given predicate.
@frozen struct LazyDropWhileSequence<Base> where Base : SequenceA sequence whose elements consist of the elements that follow the initial consecutive elements of some base sequence that satisfy a given predicate.
associatedtype Element where Self.Element == Self.Iterator.ElementA type representing the sequence’s elements.
mutating func next() -> LazyDropWhileSequence<Base>.Iterator.Element?