Macro stringify_outputs

Source
macro_rules! stringify_outputs {
    (@inner $first:ty) => { ... };
    (@inner $first:ty, $($t:ty),+) => { ... };
    ($first:ty) => { ... };
    ($($t:ty),+) => { ... };
}
Expand description

Given the list of types, stringify them as a list.