The index of the first value to swap. 交換する1つ目の値のインデックス。
Instance Method
インスタンスメソッド
swap
swapAt(_:_:)
Exchanges the values at the specified indices of the collection.
そのコレクションの指定インデックスでの値を交換します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
i
j
The index of the second value to swap. 交換する2つ目の値のインデックス。
Discussion 解説
Both parameters must be valid indices of the collection that are not equal to end
. Calling swap
with the same index as both i
and j
has no effect.
両方のパラメータは、このコレクションの有効なインデックスで、end
と等しくない必要があります。swap
をi
とj
両方で同じインデックスで呼び出すことは、効果を持ちません。
Complexity: O(1) 計算量:O(1)