"Nick Sabalausky" <a...@a.a> wrote in message 
news:hujd9m$11o...@digitalmars.com...
> "Nick Sabalausky" <a...@a.a> wrote in message 
> news:hujd6a$11e...@digitalmars.com...
>>
>> Assuming, of course, a 'max' that works on a range, which would be easy 
>> enough to do. Probably something like:
>>
>
> ElementType!T max(T range)  // Corrected
>
>> {
>>    return reduce!ordinaryMax(range);
>>    // Or
>>    return reduce!"a>b?a:b"(range);
>> }
>>
>

Or:

alias reduce!"a>b?a:b" max;

God, I love D :)


Reply via email to