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

formIndex(_:offsetBy:)

Offsets the given index by the specified distance. 与えられたインデックスを指定された間隔で補います。

Declaration 宣言

func formIndex(_ i: inout Self.Index, offsetBy distance: Int)

Parameters パラメータ

i

A valid index of the collection. コレクションのひとつの有効なインデックス。

distance

The distance to offset i. distance must not be negative unless the collection conforms to the BidirectionalCollection protocol. iを補う間隔。distanceは負であってはいけません、そのコレクションがBidirectionalCollectionプロトコルに準拠する場合を除いては。

Discussion 議論

The value passed as distance must not offset i beyond the bounds of the collection. distanceとして渡される値は、このコレクションの境界を越えてiを補ってはなりません。