static func ..< (Int, Int) -> Range<Int>
static func ... (Int, Int) -> ClosedRange<Int>
static func ... (Int) -> PartialRangeFrom<Int>
static func ... (Int) -> PartialRangeThrough<Int>
Availability
Technology
prefix static func ..< (maximum: Int
) -> PartialRangeUpTo
<Int
>
maximum
The upper bound for the range. 範囲の上側の境界。
Use the prefix half-open range operator (prefix ..<
) to create a partial range of any type that conforms to the Comparable
protocol. This example creates a Partial
instance that includes any value less than 5
.
前置半開範囲演算子(前置..<
)を使うことで何らかの型の部分的な範囲でComparable
プロトコルに準拠するものを作成してください。この例は、Partial
インスタンスで5
より少ない何らかの値を含むものを作成します。
You can use this type of partial range of a collection’s indices to represent the range from the start of the collection up to, but not including, the partial range’s upper bound. あなたは、あるコレクションのインデックスからなる、この型の部分的範囲を使うことで、コレクションの始まりからその部分的な範囲の上側の境界までの、しかしそれを含んでいない範囲を表すことができます。
Precondition: maximum
must compare equal to itself (i.e. cannot be NaN).
前提条件:maximum
はそれ自身と等しいと比較されなければなりません(すなわちNaNであることはできません)。
static func ..< (Int, Int) -> Range<Int>
static func ... (Int, Int) -> ClosedRange<Int>
static func ... (Int) -> PartialRangeFrom<Int>
static func ... (Int) -> PartialRangeThrough<Int>