<div dir="ltr">2012/12/23 Philippe Sigaud <span dir="ltr"><<a href="mailto:philippe.sigaud@gmail.com" target="_blank">philippe.sigaud@gmail.com</a>></span><br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<br><div class="gmail_quote"><div class="im"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
Thanks for the hint, this now works:<br>
<br>
bool listMembers(T)()<br>
{<br>
    static if (is(T P == super))<br>
        static if(P.length > 0)<br>
            listMembers!(P[0])();<br>
                <br>
    alias typeof(T.tupleof) TTypes;<br></blockquote><div><br></div></div><div>I don't get this. T is a type, right? So what does T.tupleof do? Shouldn't that be `typeof(T.init.tupleof)`?</div></div></blockquote><div>
<br></div><div style>T.tupleof generates a tuple of field *symbols*.</div><div style>Getting type from a tuple of symbols returns a tuple of types in D.</div><div style><br></div><div style>Kenji Hara</div></div></div></div>