1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! # map_vec: Map and Set APIs backed by Vecs.
#![cfg_attr(not(test), no_std)]
#![feature(drain_filter, shrink_to, try_reserve)]

extern crate alloc;

pub mod map;
pub mod set;

pub use map::Map;
pub use set::Set;