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
の全ての値は等しく返される可能性をもちます。
Availability
Technology
mutating func next<T>() -> T where T : FixedWidthInteger
, T : UnsignedInteger
A random value of T
. Bits are randomly distributed so that every value of T
is equally likely to be returned.
ある無作為なT
の値。それらビットは無作為に分布します、それでT
の全ての値は等しく返される可能性をもちます。
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:
メソッドをその整数型の上で使ってください、このメソッドの代わりに。