std.algorithm missing for_each?

bearophile bearophileHUGS at lycos.com
Wed Feb 5 03:21:11 PST 2014


> myRange
> .each {
>     e.someOperation;
> };

Possibly better:

myRange
.each (e) {
     e.someOperation;
};


Bye,
bearophile


More information about the Digitalmars-d mailing list