unittest{
import std.meta;
alias first=AliasSeq!(int, string,bool);
alias second=AliasSeq!("abc","def","ghi");
alias third=...static assert(third==AliasSeq!(int, "abc", string, "def", bool, "ghi"));
}How to obtain this kind of functionality ? Is there maybe some builin template for this in phobos ? I couldn't find this.
Thank you Voitech.
