Ouzo\Utilities\FluentFunction::negate PHP Method

negate() public method

public negate ( )
    public function negate()
    {
        $this->_functions[] = function ($object) {
            return !$object;
        };
        return $this;
    }