formualizer_eval/
lib.rs

1pub mod args;
2pub mod broadcast;
3pub mod coercion;
4pub mod error_policy;
5pub mod function;
6pub mod function_registry;
7pub mod interpreter;
8pub mod locale;
9pub mod map_ctx;
10pub mod rng;
11pub mod stripes;
12pub mod timezone;
13pub mod traits;
14pub mod window_ctx;
15
16pub mod builtins;
17pub mod reference;
18
19pub use reference::CellRef;
20pub use reference::Coord;
21pub use reference::RangeRef;
22pub use reference::SheetId;
23
24mod macros;
25#[cfg(test)]
26pub mod test_utils;
27pub mod test_workbook;
28
29pub mod engine;
30pub mod planner;
31pub mod telemetry;
32
33// Arrow-backed storage (Phase A)
34pub mod arrow_store;
35// Arrow compute affordances (Phase B ready)
36pub mod compute_prelude;
37
38#[cfg(test)]
39mod tests;