sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Module for describing operations over fixed size integers
module N : sig ... end
xor_lookup a b
returns the exclusive disjunction of a
and b
. This primitive uses a precomputed lookup table called "xor" ^ nb_bits
.
band_lookup a b
returns the conjunction of a
and b
. This primitive uses a precomputed lookup table called "band" ^ nb_bits
.
bnot_lookup b
returns the negation of b
. This primitive uses a precomputed lookup table called "bnot" ^ nb_bits
.