www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Trait to get function parameter names

reply "mist" <none none.none> writes:
Subject.
Is that possible? I see only parameter type tuple stuff out 
there. I'm looking into iterating over own parameter name list 
inside of function.
Aug 31 2012
parent reply Jacob Carlborg <doob me.com> writes:
On 2012-08-31 16:24, mist wrote:
 Subject.
 Is that possible? I see only parameter type tuple stuff out there. I'm
 looking into iterating over own parameter name list inside of function.
Here: http://dlang.org/traits.html#parameterNames -- /Jacob Carlborg
Aug 31 2012
parent reply "mist" <none none.none> writes:
On Friday, 31 August 2012 at 19:15:14 UTC, Jacob Carlborg wrote:
 On 2012-08-31 16:24, mist wrote:
 Subject.
 Is that possible? I see only parameter type tuple stuff out 
 there. I'm
 looking into iterating over own parameter name list inside of 
 function.
Here: http://dlang.org/traits.html#parameterNames
Thank you.
Aug 31 2012
parent reply Ellery Newcomer <ellery-newcomer utulsa.edu> writes:
On 08/31/2012 12:48 PM, mist wrote:
 On Friday, 31 August 2012 at 19:15:14 UTC, Jacob Carlborg wrote:
 On 2012-08-31 16:24, mist wrote:
 Subject.
 Is that possible? I see only parameter type tuple stuff out there. I'm
 looking into iterating over own parameter name list inside of function.
Here: http://dlang.org/traits.html#parameterNames
Thank you.
Have fun discovering it isn't implemented. Then use std.traits.ParameterIdentifierTuple
Sep 04 2012
parent reply Jacob Carlborg <doob me.com> writes:
On 2012-09-04 20:28, Ellery Newcomer wrote:

 Have fun discovering it isn't implemented. Then use
It isn't? Then why is it in the docs.
 std.traits.ParameterIdentifierTuple
And why is this not in the docs. -- /Jacob Carlborg
Sep 04 2012
parent reply Ellery Newcomer <ellery-newcomer utulsa.edu> writes:
On 09/04/2012 12:09 PM, Jacob Carlborg wrote:
 On 2012-09-04 20:28, Ellery Newcomer wrote:

 Have fun discovering it isn't implemented. Then use
It isn't? Then why is it in the docs.
no idea.
 std.traits.ParameterIdentifierTuple
And why is this not in the docs.
dlang.org docs seem to lag behind a bit. ParameterIdentifierTuple was added in 2.060
Sep 04 2012
parent "Adam D. Ruppe" <destructionator gmail.com> writes:
I think the __traits thing was a half-completed pull request.

Or a complete one that got half-reverted.


In any case it was a mistake to put it in the docs, since it
isn't in the dmd source code.
Sep 04 2012