simendsjo:int a; string b; ToTuple!(a, b) should create Tuple!(int, "a", string, "b") template ToTuple(Variables...) { ? }ToTuple will have a hard time inventing the names for those fields... Bye, bearophile
Not sure I understand what you mean. Using Variables[i].stringof in a template gives the original name.
