The range in which to create a random value. range
must not be empty.
その中においてある無作為な値が作成される範囲。range
は空であってはいけません。
Type Method
型メソッド
random(in:)
Returns a random value within the specified range.
指定された範囲内のある無作為の値を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
static func random(in range: Range
<Self>) -> Self
Parameters パラメータ
range
Return Value 戻り値
A random value within the bounds of range
.
range
の境界内のある無作為な値。
Discussion 解説
Use this method to generate an integer within a specific range. This example creates three new values in the range 1..<100
.
このメソッドを使って、特定の範囲の内のある整数を作成してください。この例は、3つの新しい値を範囲1..<100
において作成します。
This method is equivalent to calling the version that takes a generator, passing in the system’s default random generator. このメソッドは、ある生成子をとるバージョンを、システムの持つ省略時の無作為生成子を渡して呼び出すことに相当します。