Reputation: 2174
How to list all methods (template and plain) of the class or struct in D? Compile time.
Upvotes: 3
Views: 252
Reputation: 25595
__traits(allMembers)
http://dlang.org/spec/traits.html#allMembers
The sample chapter of my book goes into more detail too: https://www.packtpub.com/application-development/d-cookbook
you use allMembers to get the names, getOverloads to get overloads, and the other traits to identify just what they all are.
Upvotes: 2