Converts a tuple of aliases to an array of strings containing the names of the given aliases.
an array containing the names of the given aliases
int a; int b; const names = toArray!(a, b); static assert(names == ["a", "b"]);
See Implementation
Converts a tuple of aliases to an array of strings containing the names of the given aliases.