leo/compiler/src/statement/branch/mod.rs

6 lines
160 B
Rust
Raw Normal View History

2020-07-08 12:36:12 +03:00
//! Methods to enforce constraints on a branch of a conditional or iteration statement
//! in a compiled Leo program.
pub mod branch;
pub use self::branch::*;