A closure that takes an element of the sequence as its argument and returns a Boolean value indicating whether the element is a match. あるクロージャ、それは1つの要素をそれの引数として取り、その要素が合致するものかどうかを指し示しているブール値を返します。
Instance Method
インスタンスメソッド
last(where:)
Returns the last element of the sequence that satisfies the given predicate.
与えられた述部を満たすこのシーケンスの最後の要素を返します。
Availability 有効性
- iOS 15.0+
- iPadOS 15.0+
- macOS 12.0+
- Mac Catalyst 15.0+
- tvOS 15.0+
- watchOS 8.0+
- Xcode 13.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
Parameters パラメータ
predicate
Return Value 戻り値
The last element of the sequence that satisfies predicate
, or nil
if there is no element that satisfies predicate
.
predicate
満たすシーケンスの最後の要素、またはpredicate
を満たす要素が無いならばnil
。
Discussion 議論
This example uses the last(where:)
method to find the last negative number in an array of integers:
この例は、last(where:)
メソッドを使って、整数からなるある配列の中の最後の負数を見つけます:
Complexity: O(n), where n is the length of the collection. 計算量:O(n)、ここでnはコレクションの長さです。