Instance Property インスタンスプロパティ

endIndex

The collection’s “past the end” position—that is, the position one greater than the last valid subscript argument. コレクションの「終わりを過ぎた」位置—すなわち、最後の有効な添え字引数より1つ大きい位置。

Declaration 宣言

var endIndex: ReversedCollection<Base>.Index { get }

Discussion 解説

When you need a range that includes the last element of a collection, use the half-open range operator (..<) with endIndex. The ..< operator creates a range that doesn’t include the upper bound, so it’s always safe to use with endIndex. For example: あなたがコレクションの最後の要素を含むある範囲を必要とする時は、半開範囲演算子(..<)をendIndexとともに使ってください。..<演算子は上方の境界を含まないある範囲を作成します、それでそれは常にendIndexと使うのに安全です。例えば:


let numbers = [10, 20, 30, 40, 50]
if let index = numbers.firstIndex(of: 30) {
    print(numbers[index ..< numbers.endIndex])
}
// Prints "[30, 40, 50]"

If the collection is empty, endIndex is equal to startIndex. コレクションが空ならば、endIndexstartIndexと等しいです。

Relationships 関係

From Protocol 由来プロトコル