.>=(_:_:)
Pointwise compare greater than or equal to.
Declaration
static func .>= (a: SIMD4<Scalar>, b: SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>Discussion
Each lane of the result is true if that lane of a is greater than or equal to the corresponding lane of b, and false otherwise.
Equivalent to:
var result = SIMDMask<MaskStorage>()
for i in 0..<4 {
result[i] = (a[i] >= b[i])
}