Returns a half-open range that contains its lower bound but not its upper bound.
SDK
- Xcode 9.3+
Framework
- Swift Standard Library
Declaration
Parameters
minimum
The lower bound for the range.
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.