Author: Elliot Levin (elliotlevin@hotmail.com)
Inheritance: extends IteratorIterator
コード例 #1
0
ファイル: OrderedIterator.php プロジェクト: timetoogo/pinq
 public function __construct(IIterator $iterator, callable $orderByFunction, $isAscending)
 {
     parent::__construct($iterator);
     self::__constructIterator($orderByFunction, $isAscending);
 }
コード例 #2
0
ファイル: GroupedIterator.php プロジェクト: timetoogo/pinq
 public function __construct(IIterator $iterator, callable $groupKeyFunction, callable $traversableFactory)
 {
     parent::__construct($iterator);
     self::__constructIterator($groupKeyFunction, $traversableFactory);
 }