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