Crate declaration
source ·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
- Supported Operators for a 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()