lambda_calculus 3.4.0

A simple, zero-dependency implementation of pure lambda calculus in Safe Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Lambda-encoded data types

pub mod boolean;
pub mod list;
pub mod option;
pub mod pair;
pub mod result;
#[macro_use]
pub mod tuple;
pub mod num;