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