1//! [`WeakMap`] is a wrapper over `BTreeMap` that stores weak references to
2//! values.
34#![no_std]
5#![warn(missing_docs)]
67extern crate alloc;
89pub mod map;
10pub use map::{StrongMap, WeakMap};
1112mod traits;
13pub use traits::{StrongRef, WeakRef};