저자: Elliot Levin (elliotlevin@hotmail.com)
상속: extends Iterator, implements Pinq\Iterators\IWrapperIterator
예제 #1
0
 protected function doRewind()
 {
     parent::doRewind();
     $this->isEmpty = true;
 }
예제 #2
0
 public function doRewind()
 {
     $this->position = 0;
     parent::doRewind();
 }
예제 #3
0
 protected function doRewind()
 {
     parent::doRewind();
     $this->innerValuesIterator = new EmptyIterator();
     $this->count = 0;
 }
예제 #4
0
 public final function doRewind()
 {
     $this->setFilter->initialize();
     parent::doRewind();
 }
예제 #5
0
 public function __construct(IIterator $iterator, callable $keyProjectionFunction = null, callable $valueProjectionFunction = null)
 {
     parent::__construct($iterator);
     self::__constructIterator($keyProjectionFunction, $valueProjectionFunction);
 }
예제 #6
0
 public function __construct(IIterator $iterator, callable $filter)
 {
     parent::__construct($iterator);
     self::__constructIterator($filter);
 }
예제 #7
0
 public function doRewind()
 {
     $this->maxKey = 0;
     $this->nonScalarKeyMap = new OrderedMap();
     parent::doRewind();
 }