Return Value 戻り値
A shuffled array of this sequence’s elements. このシーケンスの持つ要素からなるあるシャッフルされた配列。
Availability 有効性
Technology
func shuffled() -> [Character
]
A shuffled array of this sequence’s elements. このシーケンスの持つ要素からなるあるシャッフルされた配列。
For example, you can shuffle the numbers between 0
and 9
by calling the shuffled()
method on that range:
例えば、あなたは0
と9
の間の数をシャッフルすることが、shuffled()
メソッドをこの範囲上で呼び出すことによって可能です:
This method is equivalent to calling shuffled(using:)
, passing in the system’s default random generator.
このメソッドは、shuffled(using:)
を呼び出して、システムのもつ省略時の無作為生成子を渡すことと等しいです。
Complexity: O(n), where n is the length of the sequence. 計算量:O(n)、ここでnはシーケンスの長さです。