macro_rules! destructure_list {
() => { ... };
( $first:pat $( , $rest:pat )* $(,)? ) => { ... };
}Expand description
Deconstructs a CLVM list that has been matched.
macro_rules! destructure_list {
() => { ... };
( $first:pat $( , $rest:pat )* $(,)? ) => { ... };
}Deconstructs a CLVM list that has been matched.