static func random() -> Bool
The random number generator to use when creating the new random value. 新しい無作為値を作成するときに使う無作為数生成子。
Availability
Technology
static func random<T>(using generator: inout T) -> Bool
where T : RandomNumberGenerator
generator
The random number generator to use when creating the new random value. 新しい無作為値を作成するときに使う無作為数生成子。
Either true
or false
, randomly chosen with equal probability.
true
またはfalse
のどちらか、等しい確率で無作為に選ばれます。
This method returns true
and false
with equal probability. Use this method to generate a random Boolean value when you are using a custom random number generator.
このメソッドは、true
とfalse
を等しい確率で返します。あなたはこのメソッドを使って、あなたがあつらえの無作為数生成子を使っている場合に、無作為なブール値を生成します。
Note 注意
The algorithm used to create random values may change in a future version of Swift. If you’re passing a generator that results in the same sequence of Boolean values each time you run your program, that sequence may change when your program is compiled using a different version of Swift. 無作為値を作成するために使われるアルゴリズムは、将来のSwiftバージョンで変わるかもしれません。あなたがあなたのプログラムを実行するたびごとに同じブール値からなるシーケンスという結果になる生成子を渡すならば、そのシーケンスは、あなたのプログラムが異なるSwiftバージョンを使ってコンパイルされる時に変わるかもしれません。
static func random() -> Bool