[][src]Macro structural::tlist

macro_rules! tlist {
    ($($all:tt)*) => { ... };
}

Instantiates a type-list, which is a zero-sized-type which does not contain instances of the types it lists.

Example

use structural::{tlist,TList};

use std::borrow::Cow;

fn main(){

    const STRINGS:
        TList![ String,&str,Cow<str> ]=
        tlist![ String,&str,Cow<str> ];

}