func swapAt (Self.Index, Self.Index)
Exchanges the values at the specified indices of the collection.
そのコレクションの指定インデックスでの値を交換します。
Availability
Technology
i
The index of the first value to swap. 交換する1つ目の値のインデックス。
j
The index of the second value to swap. 交換する2つ目の値のインデックス。
Both parameters must be valid indices of the collection and not equal to end
. Passing the same index as both i
and j
has no effect.
両方のパラメータは、このコレクションの有効なインデックスであり、end
と等しくない必要があります。i
とj
の両方と同じアンデックスを渡すことは、効果を持ちません。
Complexity: O(1) 計算量:O(1)
func swapAt (Self.Index, Self.Index)