Operator 演算子

.|=(_:_:)

Replaces a with the pointwise logical disjunction of a and b. aabのポイント単位論理和で置き換えます。

Declaration 宣言

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

Discussion 解説

Equivalent to: 次に等しい:


if b { a = SIMDMask(repeating: true) }