Expand description
Excel formula parser and evaluation engine.
Parses formula strings into an AST representation and evaluates them against cell data.
Re-exports§
pub use ast::BinaryOperator;pub use ast::CellReference;pub use ast::Expr;pub use ast::UnaryOperator;pub use eval::build_dependency_graph;pub use eval::evaluate;pub use eval::topological_sort;pub use eval::CellCoord;pub use eval::CellDataProvider;pub use eval::CellSnapshot;pub use eval::Evaluator;pub use parser::parse_formula;