Exemplo n.º 1
0
 /**
  * Sort ALL the values 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 uasort
  * @return static
  */
 public function asort($fn = null)
 {
     return static::make(IterationTraits::asort($this, $fn));
 }