Short hand version for 'order(By)' methods of a sequence.

// 1, 2, 3
Enumerable.sort([2, 1, 3]);

// 33, 22, 11
Enumerable.sort([22, 11, 33],
                (x, y) => y - x);

With selector

// 22, 11, 3.3
Enumerable.sort([11, 22, 3.3],
                (x, y) => y - x',
                x => x * 10);