文書   >   Swift   >   Swift 標準ライブラリ   >   Collections   >   Supporting Types   >   FlattenCollection   >   last(where:)     Beta  
インスタンスメソッド
last(where:)
与えられた predicate (述語) を満たすシーケンスの最後の要素を返します。
宣言
func last(where predicate: (Base.Element.Element) throws -> Bool) rethrows -> Base.Element.Element?
パラメータ
predicate | シーケンスの要素をその引数とし、その要素が一致するかどうかを示すブール値を返すクロージャ。 |
戻り値
predicate (述語) を満たすシーケンスの最後の要素。 predicate を満たす要素がない場合は nil。
議論
この例では、last(where:) メソッドを使用して、整数の配列内の最後の負の数を検索します。
let numbers = [3, 7, 4, -2, 9, -6, 10, 1]
if let lastNegative = numbers.last(where: { $0 < 0 }) {
print("The last negative number is \(firstNegative).")
}
// Prints "The last negative number is -6."
ここで last negative number is\(firstNegative) となっているが、勿論 lastNegative の Typo だろう。
複雑さ:O(n)、ここで n はコレクションの長さです。
このドキュメントには、開発中の API または技術に関する予備情報が含まれています。この情報は変更されることがあり、このドキュメントに従って実装されたソフトウェアは、最終的なオペレーティングシステムソフトウェアでテストする必要があります。