An element to search for in the collection. このコレクションにおいて捜される要素。
Instance Method
インスタンスメソッド
last
lastIndex(of:)
Returns the last index where the specified value appears in the collection.
指定された値がコレクションにおいて現れるところの最後のインデックスを返します。
Availability 有効性
- iOS 7.0+
- iPadOS 7.0+
- macOS 10.9+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
Parameters パラメータ
element
Return Value 戻り値
The last index where element
is found. If element
is not found in the collection, this method returns nil
.
element
が見つけられたところの最後のインデックス。element
がコレクションの中に見つけられないならば、このメソッドはnil
を返します。
Discussion 議論
After using last
to find the position of the last instance of a particular element in a collection, you can use it to access the element by subscripting. This example shows how you can modify one of the names in an array of students.
last
を使って特定の要素の位置をあるコレクションの中で見つけた後、あなたは添え字によって要素にアクセスするためにそれを使うことができます。この例が示すのは、どうやってあなたが学生らの配列の中の名前の1つを修正できるかです。
Complexity: O(n), where n is the length of the collection. 計算量:O(n)、ここでnはコレクションの長さです。