gridline_engine/engine/
mod.rs1mod cell;
14mod cell_ref;
15mod cycle;
16mod deps;
17mod eval;
18mod format;
19mod preprocess;
20
21pub use cell::{Cell, CellType, Grid, ValueCache};
22#[allow(unused_imports)]
24pub use cell::{ComputedMap, SpillMap};
25pub use cell_ref::CellRef;
26pub use cycle::detect_cycle;
27pub use deps::{extract_dependencies, parse_range};
28pub use eval::{
29 create_engine, create_engine_with_cache, create_engine_with_functions,
30 create_engine_with_functions_and_cache, eval_with_functions, eval_with_functions_script,
31};
32#[allow(unused_imports)]
34pub use eval::{create_engine_with_functions_and_spill, create_engine_with_spill};
35pub use format::{format_dynamic, format_number};
36pub use preprocess::{ShiftOperation, preprocess_script, preprocess_script_with_context, shift_formula_references};
37
38pub use rhai::{AST, Dynamic};