Exclusive OR (XOR) between two boolean types B1 and B2.
B1
B2
Xor<true, false>; // true Xor<true, true>; // false Copy
Xor<true, false>; // true Xor<true, true>; // false
Exclusive OR (XOR) between two boolean types
B1
andB2
.