.^=(_:_:)

Replaces a with the pointwise exclusive or of a and b.

static func .^= (a: inout SIMDMask<Storage>, b: SIMDMask<Storage>)

Equivalent to:

for i in a.indices {
  a[i] = a[i] != b[i]
}