#![cfg_attr(target_os = "emscripten", feature(let_chains, unsigned_is_multiple_of))]
pub mod args;
pub mod broadcast;
pub mod coercion;
pub mod error_policy;
pub mod formula_plane;
pub mod function;
pub mod function_contract;
pub mod function_registry;
pub mod instant;
pub mod interpreter;
pub mod locale;
pub mod rng;
pub mod stripes;
pub mod timezone;
pub mod traits;
pub mod builtins;
pub mod reference;
pub use reference::CellRef;
pub use reference::Coord;
pub use reference::RangeRef;
pub use reference::SheetId;
mod macros;
#[cfg(test)]
pub mod test_utils;
pub mod test_workbook;
pub mod engine;
pub mod planner;
pub mod telemetry;
pub mod arrow_store;
pub mod compute_prelude;
#[cfg(test)]
mod tests;