Generic Instance Method
総称体インスタンスメソッド
next()
Returns a value from a uniform, independent distribution of binary data.
バイナリデータの一様な、独立分布からの値を返します。
Technology
- Swift Standard Library
Swift標準ライブラリ
Return Value
戻り値
A random value of T
. Bits are randomly distributed so that every value of T
is equally likely to be returned.
ある無作為なT
の値。それらビットは無作為に分布します、それでT
の全ての値は等しく返される可能性をもちます。
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:)
メソッドをその整数型の上で使ってください、このメソッドの代わりに。
See Also
参照
Generating Random Binary Data
無作為なバイナリデータを生成する
func next() -> UInt64
Returns a value from a uniform, independent distribution of binary data.
バイナリデータの一様な、独立分布からの値を返します。