A Rust library for mathematical expression evaluation and simplification.
%
& exponent **
support;f32
;sin
, cos
& tan
;steps
parameter to break evaluation steps into a Vec<&str>
;Add the following lines to your Cargo.toml
dependencies:
toml
[dependencies]
equation = "0.1.0"
Evaluate basic arithmetic equations and return a i32
.
```rust use equation::evaluate;
fn main() { let result = evaluate("(1 + 2) * (1 + 2)"); // Returns Ok(9) match result { Ok(val) => println!("{}", val), Err(e) => println!("Error: {:?}", e), }
evaluate("(1 + 2) * 1 + 2"); // Returns Ok(5)
} ```
Licensed under MIT license (LICENSE-MIT | https://opensource.org/licenses/MIT) or under the Apache 2.0 (LICENSE-APACHE | https://opensource.org/license/apache-2-0/).