The lower bound for the range. 範囲の下側の境界。
Operator
演算子
..<(_:
..<(_:_:)
Returns a half-open range that contains its lower bound but not its upper bound.
それの下側の境界は含むがそれの上側の境界はそうしない半開範囲を返します。
Availability 有効性
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
Technology
- Swift
UI
Declaration 宣言
static func ..< (minimum: Self, maximum: Self) -> Range
<Self>
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>
を作成します。
let lessThanFive = 0.0..<5.0
print(lessThanFive.contains(3.14)) // Prints "true"
print(lessThanFive.contains(5.0)) // Prints "false"
Precondition
minimum <= maximum
.