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