pub trait SingleBlockRegionInterface: Op {
// Provided methods
fn get_body(&self, ctx: &Context, region_idx: usize) -> Ptr<BasicBlock> { ... }
fn append_operation(
&self,
ctx: &mut Context,
op: Ptr<Operation>,
region_idx: usize,
) { ... }
}Expand description
Ops with regions that have a single block.