.&=(_:_:)

Replaces a with the pointwise logical conjunction 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]
}