---
title: ".>=(_:_:)"
framework: swift
role: symbol
role_heading: Operator
path: "swift/simd8/'._=(_:_:)-4qumd"
---

# .>=(_:_:)

Pointwise compare greater than or equal to.

## Declaration

```swift
static func .>= (a: SIMD8<Scalar>, b: Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>
```

## Discussion

Discussion Each lane of the result is true if that lane of a is greater than or equal to b, and false otherwise. Equivalent to: var result = SIMDMask<MaskStorage>() for i in 0..<8 {   result[i] = (a[i] >= b) }
