Tuple is a set of variables (e.g., struct), and TypeTuple is a set of types that you can use when validating a template
Tuple!(int,"index",real,"value") var;
defines a variable with var.index a int and var.value a real
a TypeTuple is used when you want to check if your template instances are using the correct types
source share