var a = [2, 3, 5] swap(&a[0], &a[2]) // コンパイルエラー
a.swapAt(0, 2) print(a) // [5, 3, 2]
swapAt
Collection