macro_rules! popn {
([ $($x:ident),* ],$interpreter:expr) => { ... };
}Expand description
Pops n values from the stack. Fails the instruction if n values can’t be popped.
macro_rules! popn {
([ $($x:ident),* ],$interpreter:expr) => { ... };
}Pops n values from the stack. Fails the instruction if n values can’t be popped.