raii_map/
lib.rs

1//! Map and set types in Rust in which the presence of the entry in the data
2//! structure is tied to the lifetime of a RAII handle returned by the insertion.
3
4#![no_std]
5#![warn(missing_docs)]
6
7extern crate alloc;
8
9pub mod map;
10pub mod set;