A currying function

bearophile bearophileHUGS at lycos.com
Thu Jun 21 13:33:05 PDT 2012


Philippe Sigaud:

> alias Curry!take ctake;
>
> auto target = [[0,1,2,...], [...], ];
> auto first100s = map!(ctake(100))(target);

The first argument of std.range.take is the range, this is handy 
for chaining with UFCS.

I think currently curry!take doesn't work because take is not a 
function (but maybe this is fixable).

Bye,
bearophile


More information about the Digitalmars-d mailing list