pub type ValueCache = Arc<DashMap<CellRef, Dynamic>>;Expand description
Thread-safe cache for computed cell values (both scalars and arrays). Maps cell positions to their evaluated Dynamic values. This allows:
- Cell references to use pre-computed values instead of re-evaluating
- Array formulas to store spill values for chaining
Aliased Typeยง
pub struct ValueCache { /* private fields */ }