static func random<T>(using: inout T) -> Bool
Returns a random Boolean value, using the given generator as a source for randomness.
無作為なブール値を返します、与えられた生成子を無作為さの出典として使います。
Availability
Technology
static func random() -> Bool
Either true
or false
, randomly chosen with equal probability.
true
またはfalse
のどちらか、等しい確率で無作為に選ばれます。
This method returns true
and false
with equal probability.
このメソッドは、true
とfalse
を等しい確率で返します。
This method is equivalent to calling Bool
, passing in the system’s default random generator.
このメソッドは、Bool
を、システムの持つ省略時の無作為生成子を渡して呼び出すことに相当します。
static func random<T>(using: inout T) -> Bool