visi-core 0.2.2

Embeddable spreadsheet engine: Excel formula compilation and evaluation, dependency-tracked recalculation, and .xlsx import/export
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! The spreadsheet engine: sheets, cells, columns and values.

pub mod bitmask;
pub mod cell;
pub mod column;
pub mod result_data;
pub mod sheet;

#[cfg(test)]
mod tests;

pub use bitmask::Bitmask;
pub use cell::{
    CellRef, Dependency, EngineError, EvalError, RefType, TextCellRef, generate_unique_id,
};
pub use column::{ColumnData, DataColumn};
pub use result_data::ResultData;
pub use sheet::{Context, Direction, Sheet, SheetInit, get_word_boundaries_from_str};