Author: Elliot Levin (elliotlevin@hotmail.com)
Inheritance: extends IteratorGenerator
Exemple #1
0
 public function __construct(IGenerator $iterator, callable $groupByFunction, callable $traversableFactory)
 {
     parent::__construct($iterator);
     self::__constructIterator($groupByFunction, $traversableFactory);
 }
Exemple #2
0
 public function __construct(IGenerator $iterator, callable $orderByFunction, $isAscending)
 {
     parent::__construct($iterator);
     self::__constructIterator($orderByFunction, $isAscending);
 }