Beispiel #1
0
 /**
  * Sorts the list.
  * The comparator can only be used for lists which manage objects.
  */
 public static function sort(ListI $list, \blaze\lang\Comparator $c = null)
 {
     Collections::sortRange($list, 0, $list->count() - 1, $c);
 }