Instance Method インスタンスメソッド

index(after:)

Returns the position immediately after the given index. 与えられたインデックスの直後の位置を返します。

Declaration 宣言

func index(after i: Binding<Value>.Index) -> Binding<Value>.Index
Available when Value conforms to MutableCollection.

Return Value 戻り値

The index value immediately after i. iの直後のインデックス値。

Parameters パラメータ

i

A valid index of the collection. i must be less than endIndex. コレクションのひとつの有効なインデックス。iendIndexより少なくなければなりません。

Discussion 議論

The successor of an index must be well defined. For an index i into a collection c, calling c.index(after: i) returns the same index every time.