Function essential_check::constraint_vm::exec_bytecode_iter

source ยท
pub fn exec_bytecode_iter<I>(
    bytes: I,
    access: Access<'_>,
) -> Result<Stack, ConstraintError>
where I: IntoIterator<Item = u8>,
Expand description

Execute the bytecode of a constraint and return the resulting stack.

This is the same as exec_bytecode, but lazily constructs the bytecode mapping as bytes are parsed.