bit-and bit-lshift bit-or bit-rshift hex-decode hex-encode
(bit-and & xs)
Returns the bit-wise and of 64 bit integer xs.
(bit-lshift x shift)
Returns the value of `x` bit shifted left by `shift`. Each elements are 64 bit integers.
(bit-or & xs)
Returns the bit-wise or of 64 bit integer xs.
(bit-rshift x shift)
Returns the value of `x` bit shifted right by `shift`. Each elements are 64 bit integers.
(hex-decode str)
Performs hex decoding of string data in `str`. Returns the string.
(hex-encode bin)
Performs hex encoding of binary data in `bin`. Returns the string.