Crate rpn_calc_taro_kobayashi

Crate rpn_calc_taro_kobayashi 

Source
Expand description

§RPN Calc

Reverse Polish notation (RPN) Calc.

§Example

let src = String::from("1 2 + 3 * ");
let a = rpn_calc::eval(src).unwrap();
println!("{}", a); // -> 9

Functions§

eval
eval_str