.!=(_:_:)

A vector mask with the result of a pointwise inequality comparison.

static func .!= (a: Self, b: Self) -> SIMDMask<Self.MaskStorage>

Equivalent to:

var result = SIMDMask<MaskStorage>()
for i in result.indices {
  result[i] = a[i] != b[i]
}