<!--
{
  "availability" : [
    "iOS: 8.0.0 -",
    "iPadOS: 8.0.0 -",
    "macCatalyst: 13.0.0 -",
    "macOS: 10.10.0 -",
    "tvOS: 9.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Swift",
  "identifier" : "/documentation/Swift/UInt/...(_:)-6ct6a",
  "metadataVersion" : "0.1.0",
  "role" : "Operator",
  "symbol" : {
    "kind" : "Operator",
    "modules" : [
      "Swift"
    ],
    "preciseIdentifier" : "s:SLsE3zzzoPys16PartialRangeFromVyxGxFZ::SYNTHESIZED::s:Su"
  },
  "title" : "...(_:)"
}
-->

# ...(_:)

Returns a partial range extending upward from a lower bound.

```
static func ... (minimum: Self) -> PartialRangeFrom<Self>
```

## 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 `PartialRangeFrom<Double>` instance that includes any value
greater than or equal to `5.0`.

```
let atLeastFive = 5.0...

atLeastFive.contains(4.0)     // false
atLeastFive.contains(5.0)     // true
atLeastFive.contains(6.0)     // true
```

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.

```
let numbers = [10, 20, 30, 40, 50, 60, 70]
print(numbers[3...])
// Prints "[40, 50, 60, 70]"
```

> Precondition: `minimum` must compare equal to itself (i.e. cannot be NaN).

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)