.|=(_:_:)
Replaces a with the pointwise logical disjunction of a and b.
Declaration
static func .|= (a: inout SIMDMask<Storage>, b: Bool)Discussion
Equivalent to:
if b { a = SIMDMask(repeating: true) }Replaces a with the pointwise logical disjunction of a and b.
static func .|= (a: inout SIMDMask<Storage>, b: Bool)Equivalent to:
if b { a = SIMDMask(repeating: true) }