if I have something like

template t(args...)
{
    pragma(msg, args);
}

it prints out args in a tuple... e.g.,

tuple!(...)

I do not want it to print out the tuple!().

I can write my own pragma and pass each arg to it (e.g., pragma(msg, arg[0], arg[1], ...)) but this is not very general and requires a lot of static if's (one for each possible n).


Is it possible to "untuple"?

Reply via email to