calc_lib

A crate for evaluating algebraic expressions from input using correct order of operations.\ This was designed originally for use in terminal based calculator apps.

Features

Planned Features

Features that may be implemented in the future

Default functions

accessed with Functions::default(); * log(base, value) * sqrt(value) * sin(value) * cos(value) * tan(value)

Custom Error system:

Examples:

Integer equations: ```rust // solves a simple equation use calc_lib::solve;

fn main() { // the equation to solve let solved = solve("1 + 2 * 3"); // print out errors if they occur, or handle them another way if solved.iserr() { panic!("{}", solved.err().unwrap()); } asserteq!(solved.unwrap().asi128(), 7); } Decimal Equations: rust use calclib::solve;

fn main() { // define the expression let expression = "1.3 + 2.5 * 3.1"; // solve the expression let solved = solve(expression); // handle errors that may occur if solved.iserr() { panic!("{}", x.unwraperr()); } asserteq!(solved.unwrap().asf64(), 9.05); } Solving with variables: rust use calclib::{solvedefs, Definitions, Number, Functions, Error};

fn main() { // define x as 16 let mut defs = Definitions::new(); defs.register("x", Number::new(16));

// create the functions list
// this defines an empty Functions struct with no functions.
// for functions like log, sqrt, sin, cos, tan, etc., use `Functions::default()`
let mut funcs = Functions::new();
// this shows the definition of the log function,
// exactly how it is implemented in `Functions::default();`
funcs.register("log", |args| {
    // this function takes two arguments, base and the number
    if args.len() != 2 {
        // if the number of arguments is not 2, return an error
        return Err(Error::arg_count("log", 2, args.len()));
    }
    Ok(Number::new(args[1].as_f64().log(args[0].as_f64())))
 });
let solved4 = solve_defs("log(2, x)", Some(&defs), Some(&funcs));
if solved4.is_err() { 
  panic!("{}", solved4.unwrap_err());
}
assert_eq!(solved4.unwrap().as_f64(), 4.0);

} ```