macro_rules! match_tuple {
() => { ... };
( $first:ty $(,)? ) => { ... };
( $first:ty $( , $rest:ty )* $(,)? ) => { ... };
}
Expand description
Creates the type needed to represent a tuple of CLVM types.
macro_rules! match_tuple {
() => { ... };
( $first:ty $(,)? ) => { ... };
( $first:ty $( , $rest:ty )* $(,)? ) => { ... };
}
Creates the type needed to represent a tuple of CLVM types.