<!--
{
  "availability" : [
    "iOS: 27.0.0 -",
    "iPadOS: 27.0.0 -",
    "macCatalyst: 27.0.0 -",
    "macOS: 27.0.0 -",
    "tvOS: 27.0.0 -",
    "visionOS: 27.0.0 -",
    "watchOS: 27.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Swift",
  "identifier" : "/documentation/Swift/UniqueArray/removeSubrange(_:)-6t21j",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Swift"
    ],
    "preciseIdentifier" : "s:s11UniqueArrayVsRi_zrlE14removeSubrangeyySnySiGF"
  },
  "title" : "removeSubrange(_:)"
}
-->

# removeSubrange(_:)

Removes the specified subrange of elements from the array.

```
mutating func removeSubrange(_ bounds: Range<Int>)
```

## Parameters

`bounds`

The subrange of the array to remove. The bounds
of the range must be valid indices of the array.

## Discussion

All the elements following the specified subrange are moved to close the
resulting gap.

> Complexity: O(`self.count`)

---

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)