//! This library exposes structs that mimicks the behaviour of the python
//! [defaultdict](https://docs.python.org/3/library/collections.html#collections.defaultdict).
//!
//! This behaviour does require that the type of the value does have the [`Default`] implemented.
pub use DefaultBTreeMap;
pub use DefaultHashMap;