The lower bound for the range. 範囲の下側の境界。
Operator
演算子
..<(_:
..<(_:_:)
Returns a half-open range that contains its lower bound but not its upper bound.
それの下側の境界は含むがそれの上側の境界はそうしない半開範囲を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.2+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
static func ..< (minimum: LazyPrefixWhileSequence
<Base>.Index
, maximum: LazyPrefixWhileSequence
<Base>.Index
) -> Range
<LazyPrefixWhileSequence
<Base>.Index
>
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
.