adts/
lib.rs

1//! Common collection interfaces and implementations.
2
3#![no_std]
4
5extern crate alloc;
6
7#[cfg(any(feature = "std", test))]
8extern crate std;
9
10mod collection;
11mod cons;
12mod join;
13mod map;
14mod maps;
15
16pub use collection::*;
17pub use cons::*;
18pub use join::*;
19pub use map::*;
20pub use maps::*;