Bugfix/nicolas bufixes (#491)

* UPDATE: package lock

* FIX: Add function definitions

* FIX: Small fix to get FACT working

* FIX: We only need integer FACT and FACTDOUBLE

* FIX: Make clippy happy
This commit is contained in:
Nicolás Hatcher Andrés
2025-10-30 23:24:47 +01:00
committed by GitHub
parent 7e379e24e7
commit a768bc5974
7 changed files with 35 additions and 114 deletions

View File

@@ -602,6 +602,11 @@ impl Function {
"SECH" => Some(Function::Sech),
"ACOTH" => Some(Function::Acoth),
"FACT" => Some(Function::Fact),
"FACTDOUBLE" => Some(Function::Factdouble),
"EXP" => Some(Function::Exp),
"SIGN" => Some(Function::Sign),
"PI" => Some(Function::Pi),
"ABS" => Some(Function::Abs),
"SQRT" => Some(Function::Sqrt),