0.6.0 #1

Merged
pogmommy merged 89 commits from 0.6.0 into main 2025-07-04 20:29:26 -07:00
2 changed files with 17 additions and 0 deletions
Showing only changes of commit c3b28d8fe5 - Show all commits

View file

@ -345,6 +345,22 @@ fn call_expr_function(name: &str, args: Vec<DynVal>) -> Result<DynVal, EvalError
} }
_ => Err(EvalError::WrongArgCount(name.to_string())), _ => Err(EvalError::WrongArgCount(name.to_string())),
}, },
"powi" => match args.as_slice() {
[num, n] => {
let num = num.as_f64()?;
let n = n.as_i32()?;
Ok(DynVal::from(f64::powi(num, n)))
}
_ => Err(EvalError::WrongArgCount(name.to_string())),
},
"powf" => match args.as_slice() {
[num, n] => {
let num = num.as_f64()?;
let n = n.as_f64()?;
Ok(DynVal::from(f64::powf(num, n)))
}
_ => Err(EvalError::WrongArgCount(name.to_string())),
},
"sin" => match args.as_slice() { "sin" => match args.as_slice() {
[num] => { [num] => {
let num = num.as_f64()?; let num = num.as_f64()?;

View file

@ -43,6 +43,7 @@ Supported currently are the following features:
- `round(number, decimal_digits)`: Round a number to the given amount of decimals - `round(number, decimal_digits)`: Round a number to the given amount of decimals
- `sin(number)`, `cos(number)`, `tan(number)`, `cot(number)`: Calculate the trigonometric value of a given number in **radians** - `sin(number)`, `cos(number)`, `tan(number)`, `cot(number)`: Calculate the trigonometric value of a given number in **radians**
- `min(a, b)`, `max(a, b)`: Get the smaller or bigger number out of two given numbers - `min(a, b)`, `max(a, b)`: Get the smaller or bigger number out of two given numbers
- `powi(num, n)`, `powf(num, n)`: Raise number `num` to power `n`. `powi` expects `n` to be of type `i32`
- `degtorad(number)`: Converts a number from degrees to radians - `degtorad(number)`: Converts a number from degrees to radians
- `radtodeg(number)`: Converts a number from radians to degrees - `radtodeg(number)`: Converts a number from radians to degrees
- `replace(string, regex, replacement)`: Replace matches of a given regex in a string - `replace(string, regex, replacement)`: Replace matches of a given regex in a string