Mongolid\Cursor\EmbeddedCursor::skip PHP Method

skip() public method

Skips a number of results.
public skip ( integer $amount ) : EmbeddedCursor
$amount integer The number of results to skip.
return EmbeddedCursor Returns this cursor.
    public function skip(int $amount)
    {
        $this->items = array_slice($this->items, $amount);
        return $this;
    }