pub fn exec_bytecode_iter<I>(
bytes: I,
access: Access<'_>,
) -> ConstraintResult<Stack>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.