Discussion 解説
The following example reverses the elements of an array of characters: 以下の例は、文字列からなる配列の要素を逆順にします:
Complexity: O(n), where n is the number of elements in the collection. 計算量:O(n)、ここでnはコレクションの中の要素数です。
Availability
Technology
mutating func reverse()
Base
conforms to MutableCollection
.
Base
がMutableCollection
に準拠する時に利用可能です。
The following example reverses the elements of an array of characters: 以下の例は、文字列からなる配列の要素を逆順にします:
Complexity: O(n), where n is the number of elements in the collection. 計算量:O(n)、ここでnはコレクションの中の要素数です。