Operator 演算子

.^(_:_:)

A vector mask that is the pointwise exclusive or of the inputs. 入力それらのポイント単位排他的論理和であるベクターマスク。

Declaration 宣言

static func .^ (a: SIMDMask<Storage>, b: SIMDMask<Storage>) -> SIMDMask<Storage>
Available when Storage is SIMD8<Int8>. StorageSIMD8<Int8>である時に利用可能です。

Discussion 解説

Equivalent to: 次に等しい:


var result = SIMDMask<SIMD8<Int8>>()
for i in result.indices {
  result[i] = a[i] != b[i]
}