sheetkit-core 0.5.1

Core library for reading and writing Excel (.xlsx) files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Excel formula parser and evaluation engine.
//!
//! Parses formula strings into an AST representation and evaluates them
//! against cell data.

pub mod ast;
pub mod eval;
pub mod functions;
pub mod parser;

pub use ast::{BinaryOperator, CellReference, Expr, UnaryOperator};
pub use eval::{
    build_dependency_graph, evaluate, topological_sort, CellCoord, CellDataProvider, CellSnapshot,
    Evaluator,
};
pub use parser::parse_formula;