On 07/26/2016 10:11 AM, Bahman Movaqar wrote:
> Alright...further experiments.  The following works:
> 
>     sort!((pp1, pp2) => cmp(pp1.price,  pp2.price) > 0)(theRange)
> 
> So it may be something about what kind of range I'm passing to `sort`.
> Am I right?
> 

I meant

    sort!((pp1, pp2) => cmp(pp1.price,  pp2.price) > 0)(theRange.array)


-- 
Bahman

Reply via email to