UPDATE: Adds DEGREES and RADIANS (#493)

This commit is contained in:
Nicolás Hatcher Andrés
2025-10-30 23:45:29 +01:00
committed by GitHub
parent a768bc5974
commit 6ce4756d55
4 changed files with 19 additions and 1 deletions

View File

@@ -90,6 +90,9 @@ pub enum Function {
Factdouble,
Sign,
Radians,
Degrees,
// Information
ErrorType,
Formulatext,
@@ -283,7 +286,7 @@ pub enum Function {
}
impl Function {
pub fn into_iter() -> IntoIter<Function, 227> {
pub fn into_iter() -> IntoIter<Function, 229> {
[
Function::And,
Function::False,
@@ -334,6 +337,8 @@ impl Function {
Function::Product,
Function::Rand,
Function::Randbetween,
Function::Radians,
Function::Degrees,
Function::Round,
Function::Rounddown,
Function::Roundup,
@@ -607,6 +612,9 @@ impl Function {
"EXP" => Some(Function::Exp),
"SIGN" => Some(Function::Sign),
"RADIANS" => Some(Function::Radians),
"DEGREES" => Some(Function::Degrees),
"PI" => Some(Function::Pi),
"ABS" => Some(Function::Abs),
"SQRT" => Some(Function::Sqrt),
@@ -1051,6 +1059,8 @@ impl fmt::Display for Function {
Function::Fact => write!(f, "FACT"),
Function::Factdouble => write!(f, "FACTDOUBLE"),
Function::Sign => write!(f, "SIGN"),
Function::Radians => write!(f, "RADIANS"),
Function::Degrees => write!(f, "DEGREES"),
}
}
}
@@ -1306,6 +1316,8 @@ impl Model {
Function::Fact => self.fn_fact(args, cell),
Function::Factdouble => self.fn_factdouble(args, cell),
Function::Sign => self.fn_sign(args, cell),
Function::Radians => self.fn_radians(args, cell),
Function::Degrees => self.fn_degrees(args, cell),
}
}
}