//! Structured control flow dialect.
//!
//! Being structured means that the control flow has a structure unlike, for
//! example, `goto`s or `assert`s. Unstructured control flow operations are
//! located in the `cf` (control flow) dialect.
use crateDialect;
pub use IfOp;
pub use YieldOp;
;