func shuffled(using: GKRandomSource) -> [Any]
Returns a new array that lists this array’s elements in a random order, using the specified random source.
新しい配列を返します、それはこの配列の持つ要素を無作為な順序で列記するものです、指定された無作為さの源を使います。
Availability 有効性
Technology
func shuffled() -> [Any]
A new array that lists this array’s elements in a random order. この配列の持つ要素を無作為順に列記する新しい配列。
Calling this method is equivalent to calling the shuffled(using:)
method and passing the system shared
random source. To influence the random shuffling or to be able to deterministically reproduce a series of shuffles, create your own GKRandom
object.
このメソッドを呼び出すことは、shuffled(using:)
メソッドを呼びだしてシステムのshared
無作為源を渡すことと等しいです。無作為シャッフルに影響を与えるにはまたは一連のシャッフルを決定論的に再現可能にするには、あなた独自のGKRandom
オブジェクトを作成してください。
func shuffled(using: GKRandomSource) -> [Any]