logxor[procedure] logxor n1 n2
SLIB, Guile: bitwise exclusive or of two integers.
This is called bitwise-xor or
bit-xor in some implementations.
Chez has fxlogxor that works for fixnum range.
[procedure] logxor n1 ...
Gauche, SISC:
allows arbitrary number of integer arguments.
Note that SISC has range limitation in n1...
(as of 1.6.4).
See also logand, logor, logior, lognot, ash
|