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つの要素をそれの引数として取り、その要素があるマッチであるかどうかを指し示しているブール値を返します。
Instance Method
インスタンスメソッド
first(where:)
Returns the first element of the sequence that satisfies the given predicate.
与えられた述部を満たすこのシーケンスの最初の要素を返します。
Availability
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 15.0+
- tvOS 13.0+
- watchOS 6.0+
- Xcode 13.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
predicate
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. 述部は、非同期シーケンスがある要素を生み出すたびごとに遂行されます、述部がある合致を見つけるかシーケンスが終わるかどちらかまで。