collections.rs 216 B

1234567
  1. // SPDX-License-Identifier: AGPL-3.0-or-later
  2. //! A collection of collection types.
  3. pub mod hash_map_with_default;
  4. pub use hash_map_with_default::HashMapWithDefault;
  5. pub mod bijection;
  6. pub use bijection::Bijection;