drop(while:)
Returns a lazy sequence that skips any initial elements that satisfy predicate.
Declaration
func drop(while predicate: @escaping (Self.Elements.Element) -> Bool) -> LazyDropWhileSequence<Self.Elements>Parameters
- predicate:
A closure that takes an element of the sequence as its argument and returns
trueif the element should be skipped orfalseotherwise. Oncepredicatereturnsfalseit will not be called again.