map_vec 0.6.0

The Map and Set APIs backed by Vec
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc = include_str!("../README.md")]
#![cfg_attr(not(any(test, doc)), no_std)]
#![cfg_attr(feature = "nightly", feature(trusted_len, try_reserve_kind))]
#![cfg_attr(any(docsrs, feature = "nightly"), feature(doc_cfg))]

extern crate alloc;

pub mod map;
pub mod set;

#[doc(inline)]
pub use map::Map;

#[doc(inline)]
pub use set::Set;