func next<T>() -> T
Returns a value from a uniform, independent distribution of binary data.
バイナリデータの一様な、独立分布からの値を返します。
Availability
Technology
mutating func next() -> UInt64
An unsigned 64-bit random value. 符号なし64ビット無作為値。
Use this method when you need random binary data to generate another value. If you need an integer value within a specific range, use the static random(in:
method on that integer type instead of this method.
このメソッドを、あなたが無作為バイナリデータを別の値を生成するために必要とする場合に使ってください。あなたがある整数を指定範囲内で必要とするならば、静的random(in:
メソッドをその整数型の上で使ってください、このメソッドの代わりに。
func next<T>() -> T
func next<T>(upperBound : T) -> T