The upper bound for the range. 範囲の上側の境界。
Operator
演算子
..<(_:)
Returns a partial range up to, but not including, 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 ..< (maximum: Self) -> PartialRangeUpTo
<Self>
Parameters パラメータ
maximum
Discussion 議論
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
より少ない何らかの値を含むものを作成します。
let upToFive = ..<5.0
upToFive.contains(3.14) // true
upToFive.contains(6.28) // false
upToFive.contains(5.0) // false
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. あなたは、あるコレクションのインデックスからなる、この型の部分的範囲を使うことで、コレクションの始まりからその部分的な範囲の上側の境界までの、しかしそれを含んでいない範囲を表すことができます。
let numbers = [10, 20, 30, 40, 50, 60, 70]
print(numbers[..<3])
// Prints "[10, 20, 30]"
Precondition
maximum
must compare equal to itself (i.e. cannot be NaN).