toArray

Converts a tuple of aliases to an array of strings containing the names of the given aliases.

template toArray(Args...)
static
string[]
toArray
()

Members

Static functions

toArray
string[] toArray()
Undocumented in source. Be warned that the author may not have intended to support it.

Return Value

an array containing the names of the given aliases

Examples

int a;
int b;

const names = toArray!(a, b);

static assert(names == ["a", "b"]);

Meta