.!=(_:_:)
A vector mask with the result of a pointwise inequality comparison.
Declaration
static func .!= (a: SIMDMask<Storage>, b: SIMDMask<Storage>) -> SIMDMask<Storage>Discussion
Equivalent to:
var result = SIMDMask<SIMD2<Int32>>()
for i in result.indices {
result[i] = a[i] != b[i]
}