Expand description
A simple crate for parsing mathematical terms.
Use Term::from_string() to generate a term from infix notation and Term::apply() to use it as a formula.
Enumsยง
- Error
- Operator
- Supported Operators for a Term.
- Term
- A mathematical term.
Can be generated from a string with
Self::from_string()orSelf::from_string_custom_operators()and can be applied viaSelf::apply()