Returns a partial range up to, but not including, its upper bound.
SDK
- Xcode 9.0+
Framework
- Swift Standard Library
Declaration
Parameters
maximum
The upper bound for the range.
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
.
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.