Denis Gladkiy
Denis Gladkiy

Reputation: 2174

How to list (compile time introspection) all the class/struct methods in D?

How to list all methods (template and plain) of the class or struct in D? Compile time.

Upvotes: 3

Views: 252

Answers (1)

Adam D. Ruppe
Adam D. Ruppe

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

Related Questions