Jackalope\Query\RowIterator::seek PHP Method

seek() public method

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