A valid index of the collection. そのコレクションの有効なインデックス。
Instance Method
インスタンスメソッド
distance(from:
distance(from:to:)
Returns the distance between two indices.
2つのインデックス間の隔たりを返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Manipulating Indices インデックスを操る
var startIndex : Int
The position of the first element in a nonempty array.
空でない集合の中の最初の要素の位置。
var endIndex : Int
The array’s “past the end” position—that is, the position one greater than the last valid subscript argument.
配列の「終わりを過ぎた」位置—すなわち、最後の有効な添え字引数より1つ大きい位置。
func index(after: Int) -> Int
Returns the position immediately after the given index.
与えられたインデックスの直後の位置を返します。
func formIndex (after: inout Int)
Replaces the given index with its successor.
与えられたインデックスをそれの後に続くものと取り替えます。
func index(before: Int) -> Int
Returns the position immediately before the given index.
与えられたインデックスの直前の位置を返します。
func formIndex (before: inout Int)
Replaces the given index with its predecessor.
与えられたインデックスをそれの前のものと取り替えます。
func index(Int, offsetBy : Int) -> Int
Returns an index that is the specified distance from the given index.
与えられたインデックスから指定された隔たりのインデックスを返します。
func formIndex (inout Int, offsetBy : Int)
Offsets the given index by the specified distance.
与えられたインデックスを指定された間隔で補います。
func index(Int, offsetBy : Int, limitedBy : Int) -> Int?
Returns an index that is the specified distance from the given index, unless that distance is beyond a given limiting index.
与えられたインデックスから指定された隔たりのインデックスを返します、その隔たりが与えられた限界インデックスを越えない限りは。
func formIndex (inout Int, offsetBy : Int, limitedBy : Int) -> Bool
Offsets the given index by the specified distance, or so that it equals the given limiting index.
与えられたインデックスをこの指定された隔たりで補います、またはそれでそれは与えられた限界インデックスと等しくなります。