TeamTNT\TNTSearch\Support\Expression::isOperand PHP Method

isOperand() public method

public isOperand ( $str )
    public function isOperand($str)
    {
        if ($str == "|" || $str == "&" || $str == "~" || $str == "(" || $str == ")") {
            return false;
        }
        return true;
    }