August 20, 2003
I found if I sort an array of objects, like:

Object[] array;
array ~= new Object;
array ~= new Object;
.....

array.sort;

Them will be sorted by address of object.
Why not sort them by overloaded operator Object.cmp() ?