frontend/components/
binary_operations.rs

1//! Defines components needed for building binary circuits.
2
3// Implements bit shifting gates.
4pub mod logical_shift;
5
6// Implements binary addition gates.
7pub mod binary_adder;
8
9// Implements bit-wise rotation of a w-width word
10pub mod rotate_bits;