TypealiasSwift

    LazyDropWhileCollection

    A lazy wrapper that includes the elements of an underlying collection after any initial consecutive elements that satisfy a predicate.

    typealias LazyDropWhileCollection<T> = LazyDropWhileSequence<T> where T : Collection

    Overview