Returns a string array with all parameter names of a function.
If a parameter has no name, an empty string is placed into array.
A function.
Function parameter names.
int func(ref Object stuff, uint[] = null, scope uint k = 1); alias P = ParameterIdentifierTuple!func; static assert(P[0] == "stuff"); static assert(P[1] == ""); static assert(P[2] == "k");
See Implementation
Returns a string array with all parameter names of a function.
If a parameter has no name, an empty string is placed into array.