コンテンツにスキップ

Bool Xor

このコンテンツはまだ日本語訳がありません。

Apply the Xor operator on two or more boolean values.

PortDescription
The boolean values to apply the XOR operator on.
PortDescription
The result of the boolean operation. true if an odd number of input values are true, false otherwise.

Below is the truth table for the XOR operator applied to two boolean values:

Input 1Input 2Output (1 XOR 2)
000
011
101
110

ID: core/bool-xor@v1