Instance Methodswift 6.0.1Swift
index(after:)
func index(after i: LazyDropWhileSequence<Base>.Index) -> LazyDropWhileSequence<Base>.Index
func index(after i: LazyDropWhileSequence<Base>.Index) -> LazyDropWhileSequence<Base>.Index
ss21LazyDropWhileSequenceVsSlRzrlE5index5after5IndexQzAF_tF
What are these?
FNV24: [TUNJ]
where Base:Collection
import Swift
@frozen struct LazyDropWhileSequence<Base> where Base : Sequence
A sequence whose elements consist of the elements that follow the initial consecutive elements of some base sequence that satisfy a given predicate.
protocol Collection<Element> : Sequence
A sequence whose elements can be traversed multiple times, nondestructively, and accessed by an indexed subscript.
var endIndex: LazyDropWhileSequence<Base>.Index { get }
var startIndex: LazyDropWhileSequence<Base>.Index { get }
subscript(position: LazyDropWhileSequence<Base>.Index) -> LazyDropWhileSequence<Base>.Element { get }
typealias Index = Base.Index
typealias SubSequence = Slice<LazyDropWhileCollection<Base>>