Пример #1
0
 /**
  * Sort ALL the values by the keys in the sequence.  Keys ARE preserved.
  *
  * @param callable $fn($a, $b) [optional] -- function to use to sort the values, needs to return an int see uksort
  * @return static
  */
 public function sortKeys($fn = null)
 {
     return static::make(IterationTraits::sortKeys($this, $fn));
 }