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
10
11
12
13
14
/* Modules */
/// The function module.
mod function;
/// The identifier module.
mod identifier;
/// The operator module.
mod operator;
/* Exports */
pub use function::Function;
pub use identifier::Identifier;
pub use operator::Operator;

#[cfg(test)]
pub use function::FnPointer;