Idioms you use

Artur Skawina via Digitalmars-d digitalmars-d at puremagic.com
Mon Oct 5 11:36:39 PDT 2015


On 10/05/15 17:53, Marco Leise via Digitalmars-d wrote:
> Am Sun, 04 Oct 2015 00:08:39 +0200
> schrieb Artur Skawina via Digitalmars-d
> <digitalmars-d at puremagic.com>:
> 
>>    static ctfe = ctfeArr!( iota(256).map!isDigit() );
>>
>>    immutable typeof(R.front)[R.array().length] ctfeArr(alias R) = R.array();
> 
> I like that. Also that 1) In D everything is possible. And 2)
> If not, there is a workaround, goto 1).

Note that I just wanted to show that the ctfeArr /function/ was not
necessary, and I didn't want that `ctfe` declaration to be affected;
real code would look more like:

   enum typeof(R.front)[R.array().length] ctfeArr(alias R) = R.array();
   immutable ctfe = ctfeArr!( iota(256).map!isDigit() );

artur


More information about the Digitalmars-d mailing list