/** Sorts a List using this Ordering. */ public <T> void sort(List<T> list) { Ordering.orderList(list, this); }
/** Sorts a List using this Ordering. */ public <T> void sort(List<T> array) { Ordering.orderList(array, new ChainableOrderings(this)); }