strip

Macro strip 

Source
macro_rules! strip {
    () => { ... };
    ($($a:ident $($b:expr)?,)+) => { ... };
    ($($a:ident $($b:expr)?),*) => { ... };
}
Expand description

Generates an opcode strip. A strip is made up of OpCode items separated by a comma.

ยงExample

assert_eq!(strip!(nt 1, loop 5, t 3, e), vec![opcode!(nt 1), opcode!(loop 5), opcode!(t 3), opcode!(e)]);