The lower bound for the range. 範囲の下側の境界。
Operator
演算子
..<(_:
..<(_:_:)
Returns a half-open range that contains its lower bound but not its upper bound.
それの下側の境界は含むがそれの上側の境界はそうしない半開範囲を返します。
Availability
- iOS 14.0+
- iPadOS 14.0+
- macOS 11.0+
- Mac Catalyst 14.5+
- tvOS 14.0+
- watchOS 7.0+
- Xcode 12.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
minimum
maximum
The upper bound for the range. 範囲の上側の境界。
Discussion 解説
Use the half-open range operator (..<
) to create a range of any type that conforms to the Comparable
protocol. This example creates a Range<Double>
from zero up to, but not including, 5.0.
半開範囲演算子(..<
)を使ってComparable
プロトコルに準拠する何らかの型の配列を作成します。この例は、ゼロから5.0までの、しかしそれを含めないRange<Double>
を作成します。
Precondition: minimum <= maximum
.