Generic Instance Method 総称体インスタンスメソッド

next()

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

Declaration 宣言

mutating func next<T>() -> T where T : FixedWidthInteger, T : UnsignedInteger

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 無作為なバイナリデータを生成する