Next: , Previous: , Up: syslib numerics   [Index]


12.10.46 Bitwise logic and

Unsafe Operation: $bitwise-and-fixnum-number fx num

Apply the bitwise AND operation to the fixnum fx and the exact integer object num.

Unsafe Operation: $bitwise-and-bignum-number bn num

Apply the bitwise AND operation to the bignum bn and the exact integer num.

Unsafe Operation: $bitwise-and-fixnum-fixnum fx1 fx2

Apply the bitwise AND operation to the fixnum fx1 and the fixnum fx2.

Unsafe Operation: $bitwise-and-fixnum-bignum fx bn

Apply the bitwise AND operation to the fixnum fx and the bignum bn.

Unsafe Operation: $bitwise-and-bignum-fixnum bn fx

Apply the bitwise AND operation to the bignum bn and the fixnum fx.

Unsafe Operation: $bitwise-and-bignum-bignum bn1 bn2

Apply the bitwise AND operation to the bignum bn1 and the bignum bn2.