sim-nest 0.1.5

The SIM constellation umbrella facade: one crate that re-exports the runtime kernel, codecs, number domains, and libraries behind features.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod expand;
mod model;
mod runtime;
mod template;
#[cfg(test)]
mod tests;

pub use expand::{
    RegistryMacroExpander, expand_expr, list_macro_shape, list_macro_shape_with_rest,
    literal_head_shape, macroexpand_function, positional_macro_shape, register_macro,
    register_macro_with_parser_trust,
};
pub use model::{LispMacro, MacroCx, MacroExpansionLimits, NativeMacroImpl};
pub use runtime::{
    MacroObject, NativeExprMacro, SourceTemplateMacro, macro_value, macro_value_with_parser_trust,
};