Автор: Elliot Levin (elliotlevin@hotmail.com)
Наследование: extends IteratorGenerator
Пример #1
0
 public function __construct(IGenerator $iterator, callable $groupByFunction, callable $traversableFactory)
 {
     parent::__construct($iterator);
     self::__constructIterator($groupByFunction, $traversableFactory);
 }
Пример #2
0
 public function __construct(IGenerator $iterator, callable $orderByFunction, $isAscending)
 {
     parent::__construct($iterator);
     self::__constructIterator($orderByFunction, $isAscending);
 }