.&=(_:_:)
Replaces a with the pointwise logical conjunction of a and b.
Declaration
static func .&= (a: inout SIMDMask<Storage>, b: SIMDMask<Storage>)Discussion
Equivalent to:
for i in a.indices {
a[i] = a[i] && b[i]
}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]
}