Skip to main content

canrun_collections/
lib.rs

1#![warn(missing_docs)]
2
3//! [Canrun](canrun) collections and related [goal](canrun) functions.
4//!
5//! # NOTE: These are not very battle tested and may have some pathological
6//! performance characteristics.
7//!
8//! Unifying large or complex collections may involve forking the state for
9//! every possible combination of values. Also, the inherent complexity of
10//! specifying and implementing these operations correctly means that they could
11//! be flat out wrong. More testing, benchmarking and refinement is required.
12
13extern crate canrun;
14
15pub mod example;
16pub mod lmap;
17pub mod lvec;
18
19#[doc(hidden)]
20pub use lmap::LMap;
21#[doc(hidden)]
22pub use lvec::LVec;