graphcal-compiler 0.0.1-alpha.14

Type-safe, unit-aware, Git-friendly reactive programming language for engineering calculations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Graphcal Compiler: syntax, registry, IR, and TIR.
#![expect(
    clippy::result_large_err,
    reason = "GraphcalError is inherently large and only constructed on the error path"
)]

pub mod dag_id;
pub mod desugar;
pub mod hir;
pub mod ir;
pub mod registry;
pub mod stack;
pub mod syntax;
pub mod tir;