xprs 0.1.0

Xprs is a flexible and extensible mathematical expression parser and evaluator for Rust, designed for simplicity and ease of use.
Documentation
1
2
3
4
5
6
7
8
9
/* Modules */
/// Module containing the built-in functions.
pub mod built_in_functions;
/// Module containing the factorial logic.
pub mod factorial;
#[doc(hidden)]
pub mod hidden_macros;
/// Module containing the precedence logic for the operators.
pub mod precedence;