Utiltity API

Index

bit-and bit-lshift bit-or bit-rshift hex-decode hex-encode

Reference

bit-andcfunction
src/utils.c at line 11, column 1
(bit-and & xs)

Returns the bit-wise and of 64 bit integer xs.

bit-lshiftcfunction
src/utils.c at line 41, column 1
(bit-lshift x shift)

Returns the value of `x` bit shifted left by `shift`. Each elements are 64 bit integers.

bit-orcfunction
src/utils.c at line 26, column 1
(bit-or & xs)

Returns the bit-wise or of 64 bit integer xs.

bit-rshiftcfunction
src/utils.c at line 54, column 1
(bit-rshift x shift)

Returns the value of `x` bit shifted right by `shift`. Each elements are 64 bit integers.

hex-decodecfunction
src/utils.c at line 87, column 1
(hex-decode str)

Performs hex decoding of string data in `str`. Returns the string.

hex-encodecfunction
src/utils.c at line 67, column 1
(hex-encode bin)

Performs hex encoding of binary data in `bin`. Returns the string.