Boolean XOR#
Boolean XOR on two inputs. If a and b are arrays, XOR operations will be performed pair-wise. Sizes of a and b must match. If only one input is an array, the other input will be broadcast to the size of the array. Returns an array of booleans if either input is an array, otherwise returning a boolean.
Installation#
To use this Node, you must enable omni.graph.nodes
in the Extension Manager.
Inputs#
Name |
Type |
Description |
Default |
---|---|---|---|
a |
|
Input A: bool or bool array. |
|
b |
|
Input B: bool or bool array. |
Outputs#
Name |
Type |
Description |
Default |
---|---|---|---|
Result (result) |
|
The result of the boolean XOR - an array of booleans if either input is an array, otherwise a boolean. |