Fixed UserFunction operator

pull/2/head
Mark 2023-08-04 21:52:55 -07:00
parent eadd6780ce
commit 4cb45432f9
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
1 changed files with 2 additions and 0 deletions

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
}