weak_map/
lib.rs

1//! [`WeakMap`] is a wrapper over `BTreeMap` that stores weak references to
2//! values.
3
4#![no_std]
5#![warn(missing_docs)]
6
7extern crate alloc;
8
9pub mod map;
10pub use map::{StrongMap, WeakMap};
11
12mod traits;
13pub use traits::{StrongRef, WeakRef};