bumpish 0.1.0

A set of collections using bump allocations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../docs/lib.md")]
#![cfg_attr(not(test), no_std)]

extern crate alloc;

#[cfg(feature = "std")]
extern crate std;

pub mod map;
pub use map::BumpMap;

pub mod set;
pub use set::BumpSet;

pub mod stk;
pub use stk::BumpStk;

mod util;