Mongolid\Cursor\Cursor::skip PHP Метод

skip() публичный Метод

Skips a number of results.
public skip ( integer $amount ) : Cursor
$amount integer The number of results to skip.
Результат Cursor Returns this cursor.
    public function skip(int $amount)
    {
        $this->params[1]['skip'] = $amount;
        return $this;
    }