1//! Defines components needed for building binary circuits.
23// Implements bit shifting gates.
4pub mod logical_shift;
56// Implements binary addition gates.
7pub mod binary_adder;
89// Implements bit-wise rotation of a w-width word
10pub mod rotate_bits;