defaultdict/lib.rs
1//! This library exposes structs that mimicks the behaviour of the python
2//! [defaultdict](https://docs.python.org/3/library/collections.html#collections.defaultdict).
3//!
4//! This behaviour does require that the type of the value does have the [`Default`] implemented.
5
6mod default_btree;
7mod default_hashmap;
8
9pub use default_btree::DefaultBTreeMap;
10pub use default_hashmap::DefaultHashMap;