Contents

.^=(_:_:)

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

Declaration

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

Discussion

Equivalent to:

if b { a = .!a }