<!--
{
  "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/RangeReplaceableCollection/+(_:_:)-2t6em",
  "metadataVersion" : "0.1.0",
  "role" : "Operator",
  "symbol" : {
    "kind" : "Operator",
    "modules" : [
      "Swift"
    ],
    "preciseIdentifier" : "s:SmsE1poiyxqd___xtSTRd__7ElementQyd__ABRtzlFZ"
  },
  "title" : "+(_:_:)"
}
-->

# +(_:_:)

Creates a new collection by concatenating the elements of a sequence and a
collection.

```
static func + <Other>(lhs: Other, rhs: Self) -> Self where Other : Sequence, Self.Element == Other.Element
```

## Parameters

`lhs`

A collection or finite sequence.

`rhs`

A range-replaceable collection.

## Discussion

The two arguments must have the same `Element` type. For example, you can
concatenate the elements of a `Range<Int>` instance and an integer array.

```
let numbers = [7, 8, 9, 10]
let moreNumbers = (1...6) + numbers
print(moreNumbers)
// Prints "[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]"
```

The resulting collection has the type of argument on the right-hand side.
In the example above, `moreNumbers` has the same type as `numbers`, which
is `[Int]`.

---

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)