[][src]Macro tuple_list::tuple_list_type

macro_rules! tuple_list_type {
    () => { ... };
    ($i:ty) => { ... };
    ($i:ty,) => { ... };
    ($i:ty, $($e:ty),*) => { ... };
    ($i:ty, $($e:ty),*,) => { ... };
}

Macro creating tuple list types from list of element types.

See macro tuple_list! for details.