Skip to main content

run_program

Function run_program 

Source
pub fn run_program<'program, BlockId, Op, S>(
    program: &'program [Op],
    blocks: &'program BTreeMap<BlockId, Program<Op>>,
    stepper: &mut S,
) -> Result<(), RunError<BlockId, S::Error>>
where BlockId: Clone + Ord, S: Step<'program, BlockId, Op>,
Expand description

Run a program with an explicit block table.