mumu 0.11.1

Lava Mumu is a language for those in the now and that know
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod core;
pub mod eval;
mod numeric;
mod utils;
pub mod apply;
pub mod partial;
pub mod array_helpers;
pub mod curry_utils;
pub mod lambda;

pub use core::{Interpreter, DynamicFn, DynamicFnInfo, PollerFn};
pub use utils::deep_flatten_upcast_array;
pub use utils::*;
pub use apply::*;
// pub use partial::*;  // <-- REMOVE THIS LINE to fix ambiguous glob re-exports
pub use array_helpers::*;
pub use curry_utils::*;
pub use lambda::*;