Re: Custom compare function for array.sort on an integer array?

2011-04-19 Thread Dmitry Olshansky
On 19.04.2011 16:57, Sequ wrote: Like the topic says, is it possible to set a custom compare function, for when you are using the 'sort' property of an integer array? I want the integers to be sorted by a different criteria than their natural order. From the documentation

Re: Custom compare function for array.sort on an integer array?

2011-04-19 Thread Dmitry Olshansky
On 19.04.2011 16:56, Dmitry Olshansky wrote: If you are talking use std.algorithm sort Should be: If your are talking about D2, then use std.algorithm sort , ouch :) -- Dmitry Olshansky

Re: Custom compare function for array.sort on an integer array?

2011-04-19 Thread Sequ
If your are talking about D2, then use std.algorithm sort Like taken from docs below: bool myComp(int x,int y) {return x y; } sort!(myComp)(array); See also: http://www.digitalmars.com/d/2.0/phobos/std_algorithm.html#sort -- Dmitry Olshansky Ah, yes, thanks; that looks like it