.!(_:)

A vector mask that is the pointwise logical negation of the input.

static func .! (a: SIMDMask<Storage>) -> SIMDMask<Storage>

Equivalent to:

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