1
2
3
4
5
6
7
// SPDX-License-Identifier: AGPL-3.0-or-later
//! A collection of collection types.

pub mod hash_map_with_default;
pub use hash_map_with_default::HashMapWithDefault;
pub mod bijection;
pub use bijection::Bijection;