<!--
{
  "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/SIMD32/init(lowHalf:highHalf:)-19jsh",
  "metadataVersion" : "0.1.0",
  "role" : "Initializer",
  "symbol" : {
    "kind" : "Initializer",
    "modules" : [
      "Swift"
    ],
    "preciseIdentifier" : "s:s6SIMD32VsSuRszrlE7lowHalf04highC0ABySuGs6SIMD16VySuG_AHtcfc"
  },
  "title" : "init(lowHalf:highHalf:)"
}
-->

# init(lowHalf:highHalf:)

A vector formed by concatenating lowHalf and highHalf.

```
init(lowHalf: SIMD16<UInt>, highHalf: SIMD16<UInt>)
```

## Discussion

Equivalent to:

```
var result = SIMD32<UInt>()
for i in 0..<16 {
  result[i] = lowHalf[i]
  result[16+i] = highHalf[i]
}
```

---

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)