Rx\Operator\TakeLastOperator::__construct PHP Method

__construct() public method

public __construct ( $count )
    public function __construct($count)
    {
        if ($count < 0) {
            throw new \InvalidArgumentException('Count must be >= 0');
        }
        $this->count = $count;
    }
TakeLastOperator