bitwiseXor
ts
const bitwiseXor: OperatorFn;Defined in: operations.ts:432
Applies a bitwise XOR across all arguments.
Remarks
Evaluated from left to right: a ^ b ^ c is evaluated as (a ^ b) ^ c
All arguments are converted to numbers before evaluation.
Param
Numeric arguments
Returns
Result of the bitwise XOR operation
Since
1.0.0
Author
Simon Kovtyk
Author
David Schummer