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;
    }