A valid index of the collection. i
must be less than end
.
そのコレクションの有効なインデックス。i
はend
より少なくなければなりません。
Instance Method
インスタンスメソッド
index(after:)
Returns the position immediately after the given index.
与えられたインデックスの直後の位置を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.3+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func index(after i: Dictionary
<Key, Value>.Index
) -> Dictionary
<Key, Value>.Index
Parameters パラメータ
i
Index Index
Return Value 戻り値
The index value immediately after i
.
i
の直後のインデックス。
Discussion 解説
The successor of an index must be well defined. For an index i
into a collection c
, calling c
returns the same index every time.
あるインデックスの後に続くものは、よく定義されなければなりません。コレクションc
へのインデックスi
に対して、c
を呼び出すことはいつでも同じインデックスを返します。
Note 注意
This documentation comment was inherited from Collection
.
この文書化コメントは、Collection
から引き継がれました。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Manipulating Indices インデックスを操る
var startIndex : Dictionary<Key, Value>.Index
The position of the first element in a nonempty dictionary.
空でない辞書の中の最初の要素の位置。
var endIndex : Dictionary<Key, Value>.Index
The dictionary’s “past the end” position—that is, the position one greater than the last valid subscript argument.
辞書の「終わりを過ぎた」位置—すなわち、最後の有効な添え字引数より1つ大きい位置。
func formIndex (after: inout Dictionary<Key, Value>.Index)
Replaces the given index with its successor.
与えられたインデックスをそれの後に続くものと取り替えます。
func index(Index, offsetBy : Int) -> Index
Returns an index that is the specified distance from the given index.
与えられたインデックスから指定された隔たりのインデックスを返します。
func formIndex (inout Index, offsetBy : Int)
Offsets the given index by the specified distance.
与えられたインデックスを指定された間隔で補います。
func index(Index, offsetBy : Int, limitedBy : Index) -> Index?
Returns an index that is the specified distance from the given index, unless that distance is beyond a given limiting index.
与えられたインデックスから指定された隔たりのインデックスを返します、その隔たりが与えられた限界インデックスを越えない限りは。
func formIndex (inout Index, offsetBy : Int, limitedBy : Index) -> Bool
Offsets the given index by the specified distance, or so that it equals the given limiting index.
与えられたインデックスをこの指定された隔たりで補います、またはそれでそれは与えられた限界インデックスと等しくなります。
func distance(from: Index, to: Index) -> Int
Returns the distance between two indices.
2つのインデックス間の隔たりを返します。
var indices: DefaultIndices<Dictionary<Key, Value>>
The indices that are valid for subscripting the collection, in ascending order.
コレクションの添え字に使うのに有効である、昇順でのインデックス。