Fixed UserFunction operator

This commit is contained in:
2023-08-04 21:52:55 -07:00
parent eadd6780ce
commit 4cb45432f9

View File

@ -102,6 +102,7 @@ impl Operator {
| Operator::Factorial
| Operator::Sqrt
| Operator::Function(_)
| Operator::UserFunction(_)
=> false,
_ => true
}
@ -113,6 +114,7 @@ impl Operator {
Operator::Negative
| Operator::Sqrt
| Operator::Function(_)
| Operator::UserFunction(_)
=> false,
_ => true
}