A valid index of the collection. コレクションのひとつの有効なインデックス。
Instance Method
インスタンスメソッド
form
formIndex(_:offsetBy:)
Offsets the given index by the specified distance.
与えられたインデックスを指定された間隔で補います。
Availability 有効性
- iOS 7.0+
- iPadOS 7.0+
- macOS 10.9+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.3+
Technology
- Foundation ファウンデーション
Declaration 宣言
Parameters パラメータ
i
distance
The distance to offset
i
.distance
must not be negative unless the collection conforms to theBidirectional
protocol.Collection i
を補う間隔。distance
は負であってはいけません、そのコレクションがBidirectional
プロトコルに準拠する場合を除いては。Collection
Discussion 議論
The value passed as distance
must not offset i
beyond the bounds of the collection.
distance
として渡される値は、このコレクションの境界を越えてi
を補ってはなりません。
Complexity: O(1) if the collection conforms to Random
; otherwise, O(k), where k is the absolute value of distance
.
計算量:O(1)、もしコレクションがRandom
に準拠するならば;そうでなければ、O(k)、そこでkはdistance
の値の絶対値です。