acir/native_types/mod.rs
1//! Low-level native types used within the [crate::circuit] module for representing ACIR.
2
3mod expression;
4mod witness;
5mod witness_map;
6mod witness_stack;
7
8pub use expression::Expression;
9pub(crate) use expression::display_expression;
10pub use witness::Witness;
11pub use witness_map::WitnessMap;
12pub use witness_stack::WitnessStack;
13pub use witness_stack::WitnessStackError;