static func random(in: Range<Int>) -> Int
Returns a random value within the specified range.
指定された範囲内のある無作為の値を返します。
static func random<T>(in: Range<Int>, using: inout T) -> Int
Returns a random value within the specified range, using the given generator as a source for randomness.
指定された範囲内のある無作為な値を返します、与えられた生成子を無作為さの出典として使って使います。
static func random(in: ClosedRange<Int>) -> Int
Returns a random value within the specified range.
指定された範囲内のある無作為の値を返します。