저자: 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);
 }