Returns a partial range extending upward from a lower bound.
SDK
- Xcode 10.0+
Framework
- Swift Standard Library
Declaration
Parameters
minimum
The lower bound for the range.
Discussion
Use the postfix range operator (postfix ...
) to create a partial range of any type that conforms to the Comparable
protocol. This example creates a Partial
instance that includes any value greater than or equal to 5
.
You can use this type of partial range of a collection’s indices to represent the range from the partial range’s lower bound up to the end of the collection.