flatmap 0.2.0

Fast and Efficient Linear Map and Set for small collections
Documentation
1
2
3
4
5
6
7
8
9
#![no_std]

extern crate alloc;

mod map;
mod set;

pub use map::{ConstantFlatMap, FlatMap, FlatMapEntry};
pub use set::{ConstantFlatSet, FlatSet};