I know how to find all the classes: foreach (mod; ModuleInfo) { foreach (c; mod.localClasses) { // use c.base to construct inheritance graph } }
Can I do the same with all the interfaces? Looking at object.d gives no clue...
Jean-Louis Leroy via Digitalmars-d-learn Mon, 03 Jul 2017 06:56:47 -0700
I know how to find all the classes: foreach (mod; ModuleInfo) { foreach (c; mod.localClasses) { // use c.base to construct inheritance graph } }
Can I do the same with all the interfaces? Looking at object.d gives no clue...