Instance Method インスタンスメソッド

next()

Returns a value from a uniform, independent distribution of binary data. バイナリデータの一様な、独立分布からの値を返します。

Declaration 宣言

mutating func next() -> UInt64

Return Value 戻り値

An unsigned 64-bit random value. 符号なし64ビット無作為値。

Discussion 解説

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:using:) method on that integer type instead of this method. このメソッドを、あなたが無作為バイナリデータを別の値を生成するために必要とする場合に使ってください。あなたがある整数を指定範囲内で必要とするならば、静的random(in:using:)メソッドをその整数型の上で使ってください、このメソッドの代わりに。

Default Implementations 省略時実装

RandomNumberGenerator Implementations

See Also 参照

Generating Random Binary Data 無作為なバイナリデータを生成する