nar 0.0.8

Narc, a dependently-typed programming language with dependent pattern matching
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub use self::{apply::*, dbi::*, prim::*, redex::*};

pub type Subst = PrimSubst<crate::syntax::core::Term>;

/// Eliminate something with something else.
mod apply;
/// De-Bruijn indices things.
mod dbi;
/// The primitive substitution type.
mod prim;
/// Reduction function (red-ex stands for **red**ducible **ex**pression).
mod redex;