Fungi provides two sub-languages for expressing the interactions of incremental computations, which it divides into two roles:
Computation performed in the archivist role computes output from input that the editor mutates over time.
The semantics of Fungi programs are effectful, as they allocate programmer-named values and computations, and read these objects from memory later. However, due to Fungi's type and effect system for names, the behavior of Fungi archivists is functional: the key invariant of its type-and-effects system.
In particular, Fungi provides language affordances for - first-class names, - first class name-functions, - input/output collections whose types are indexed by sets of names (e.g., to uniquely identify positions in a list), and - functions whose types are indexed by what cached data and computations they read and write.
Fungi serves as the target language for IODyn. Unlike IODyn, the incremental features of Fungi are explicit.
src/ast.rs
, and test/ast.rs