Instance Method インスタンスメソッド

drop(while:)

Returns a lazy sequence that skips any initial elements that satisfy predicate. predicateを満足させる、あらゆる冒頭の要素を省くある遅延シーケンスを返します。

Declaration 宣言

func drop(while predicate: @escaping (Base.Element) -> Bool) -> LazyDropWhileSequence<LazyPrefixWhileSequence<Base>>

Parameters パラメータ

predicate

A closure that takes an element of the sequence as its argument and returns true if the element should be skipped or false otherwise. Once predicate returns false it will not be called again. あるクロージャ、それはシーケンスの1つの要素をそれの引数として取り、その要素が省かれるべきならばtrueを、またはそうでなければfalseを返します。いったんpredicatefalseを返すならそれは再び呼び出されません。