Given the declaration of the function in D, is it possible at compile time to introspectively present a string representation of any function parameter names for use in the function of automatic reflection of a function. For example.
void foo(int a, double b, string c) { } register_function!(foo)()
Can register_function retrieve "a", "b", "c" at compile time in the same way that __traits (allMembers, someClass) can for a class?
introspection d
John
source share