chsi00_test_rpn_calc 0.1.1

RPN(Reverse Polish Notatio) library
Documentation
  • Coverage
  • 50%
    1 out of 2 items documented1 out of 2 items with examples
  • Size
  • Source code size: 2.18 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 123.99 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Chsi0

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