On Nov 13, 2007 6:17 AM, David B. Held <dheld at codelogicconsulting.com> wrote:
> int size[3] = { length, width, height };
> std::sort(size + 0, size + 3);
>
> I do lots of little stuff like this, which is very convenient.
In D:
    size.sort;
Pointers not needed.