Next: Random, Previous: Primitive Numerics, Up: Numbers
Return the integer which is the bitwise and of the two integer arguments n1, n2.
Example:
(number->string (logand #b1100 #b1010) 2) ⇒ "1000"
Return the integer which is the bitwise or of the two integer arguments n1, n2.
Example:
(number->string (logior #b1100 #b1010) 2) ⇒ "1110"
Return the integer which is the bitwise xor of the two integer arguments n1, n2.
Example:
(number->string (logxor #b1100 #b1010) 2) ⇒ "110"
Return the integer which is the 2's-complement of the integer argument n.
Example:
(number->string (lognot #b10000000) 2) ⇒ "-10000001" (number->string (lognot #b0) 2) ⇒ "-1"
Return
#tif any 1-bit in n1 has a corresponding (same position) 1-bit in n2,#fotherwise. Both n1 and n2 are integers.(logtest j k) == (not (zero? (logand j k))) (logtest #b0100 #b1011) ⇒ #f (logtest #b0100 #b0111) ⇒ #t
Return
#tif the idxth bit in j is set,#fotherwise. Both idx and j are integers.(logbit? idx j) == (logtest (integer-expt 2 idx) j) (logbit? 0 #b1101) ⇒ #t (logbit? 1 #b1101) ⇒ #f (logbit? 2 #b1101) ⇒ #t (logbit? 3 #b1101) ⇒ #t (logbit? 4 #b1101) ⇒ #f
Perform an arithmetic shift of n left by cnt bits (or shift right, if cnt is negative). "Arithmetic" means that the function does not guarantee to keep the bit structure of n, but rather guarantees that the result will always be rounded towards minus infinity. Therefore, the results of
ashand a corresponding bitwise shift will differ if n is negative.Formally, the function returns an integer equivalent to
(inexact->exact (floor (* N (expt 2cnt)))).Example:
(number->string (ash #b1 3) 2) ⇒ "1000" (number->string (ash #b1010 -1) 2) ⇒ "101"
Return the number of bits in integer n. If integer is positive, the 1-bits in its binary representation are counted. If negative, the 0-bits in its two's-complement binary representation are counted. If 0, 0 is returned.
Example:
(logcount #b10101010) ⇒ 4 (logcount 0) ⇒ 0 (logcount -2) ⇒ 1
Return the number of bits neccessary to represent n.
Example:
(integer-length #b10101010) ⇒ 8 (integer-length 0) ⇒ 0 (integer-length #b1111) ⇒ 4
Return n raised to the non-negative integer exponent k.
Example:
(integer-expt 2 5) ⇒ 32 (integer-expt -3 3) ⇒ -27
Return the integer composed of the start (inclusive) through end (exclusive) bits of n. The startth bit becomes the 0-th bit in the result. For example:
(number->string (bit-extract #b1101101010 0 4) 2) ⇒ "1010" (number->string (bit-extract #b1101101010 4 9) 2) ⇒ "10110"Signal out-of-range error if n is negative.