emlex 0.1.0

A zero-cost S-expression mathematical DSL engine for Rust. Provides compile-time evaluation, AST preservation, optimization, and reverse DSL reconstruction.
Documentation
1
2
3
4
5
6
7
8
#![doc = include_str!("../README.md")]

#[macro_use]
mod core;

pub mod prelude;

pub use crate::core::{CExpr, EExpr, LazyCExpr, LazyEExpr};