Adjacency-list representation of a formula dependency graph.

Edges are directed from a target cell to each cell it reads. Reference keys are the A1 string produced by refKey.

interface FormulaGraph {
    deps: Map<string, Set<string>>;
}

Properties

Properties

deps: Map<string, Set<string>>

Adjacency: refKey → set of refKeys it depends on.