Operator 演算子

.&=(_:_:)

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

Declaration 宣言

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

Discussion 解説

Equivalent to: 次に等しい:


if !b { a = SIMDMask(repeating: false) }