Jackalope\Query\RowIterator::seek PHP 메소드

seek() 공개 메소드

public seek ( integer $position )
$position integer
    public function seek($position)
    {
        $this->position = $position;
        if (!$this->valid()) {
            throw new OutOfBoundsException("invalid seek position ({$position})");
        }
    }