A closure that takes an element of the asynchronous sequence as its argument and returns a Boolean value that indicates whether the element is a match.
あるクロージャ、それは非同期シーケンスの1つの要素をそれの引数として取り、その要素があるマッチであるかどうかを指し示しているブール値を返します。
Return Value
戻り値
The first element of the sequence that satisfies predicate, or nil if there is no element that satisfies predicate.predicate満たすシーケンスの最初の要素、またはpredicateを満たす要素が無いならばnil。
Discussion
解説
In this example, an asynchronous sequence called Counter produces Int values from 1 to 10. The first(where:) method returns the first member of the sequence that’s evenly divisible by both 2 and 3.
この例において、Counterと呼ばれる非同期シーケンスはInt値を1から10まで生み出します。first(where:)メソッドは、2と3の両方で整然と割り切れるこのシーケンスの最初のメンバーを返します。
The predicate executes each time the asynchronous sequence produces an element, until either the predicate finds a match or the sequence ends.
述部は、非同期シーケンスがある要素を生み出すたびごとに遂行されます、述部がある合致を見つけるかシーケンスが終わるかどちらかまで。
Returns a Boolean value that indicates whether the asynchronous sequence contains an element that satisfies the given predicate.
あるブール値を返します、それは非同期シーケンスがこの与えられた述部を満足させる要素を含むかどうかを指し示します。
Returns a Boolean value that indicates whether all elements produced by the asynchronous sequence satisfies the given predicate.
あるブール値を返します、それは非同期シーケンスによって生み出される全ての要素がこの与えられた述部を満足させるかどうかを指し示します。
Returns the minimum element in the asynchronous sequence, using the given predicate as the comparison between elements.
非同期シーケンスの中の最小の要素を返します、与えられた述部を要素間の比較として使います。
Returns the maximum element in the asynchronous sequence, using the given predicate as the comparison between elements.
非同期シーケンスの中の最大の要素を返します、与えられた述部を要素間の比較として使います。