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