Operator 演算子

^(_:_:)

Returns the result of performing a bitwise XOR operation on the two given values. ビット単位XOR演算を2つの与えられた値に関して実行する結果を返します。

Declaration 宣言

static func ^ (lhs: UInt8, rhs: UInt8) -> UInt8

Parameters パラメータ

lhs

An integer value. ある整数値。

rhs

Another integer value. もう1つの整数値。

Discussion 解説

A bitwise XOR operation, also known as an exclusive OR operation, results in a value that has each bit set to 1 where one or the other but not both of its arguments had that bit set to 1. For example: ビット単位XOR演算、または排他的OR演算として知られるものは、1つの値という結果になり、それは各ビットが1に設定されます、そこにおいて一方または他方しかし両方でなくそれの引数がそのビットを1に設定されます。例えば:


let x: UInt8 = 5          // 0b00000101
let y: UInt8 = 14         // 0b00001110
let z = x ^ y             // 0b00001011
// z == 11

Relationships 関係

From Protocol 由来プロトコル