feat: Added truediv & mul operators

This commit is contained in:
Aradhya 2022-06-29 17:21:49 +05:30
parent 4da5fdcd02
commit 25bb945de7

View file

@ -169,6 +169,8 @@ OPERATOR_MAP: Dict[str, Callable] = {
"=<": operator.le,
">=": operator.ge,
"=>": operator.ge,
"/": operator.truediv,
"*": operator.mul,
"in": func_in,
"not in": func_not_in,
"like": like,