routine +^
Documentation for routine +^ assembled from the following types:
language documentation Operators
From Operators
(Operators) prefix +^
multi sub prefix:<+^>(Any --> Int)
Integer bitwise negation operator: Coerces the argument to Int and does a bitwise negation on the result, assuming two's complement.
language documentation Operators
From Operators
(Operators) infix +^
multi sub infix:<+^>(, --> Int)
Integer bitwise XOR operator: Coerces both arguments to Int and does a bitwise XOR (exclusive OR) operation.