use HashSet;
use HashMap as IMHashMap;
use crate::*;
/// Garbage-collected hash map implementing `Copy`.
/// This implements `Ord` but the order is not meaningful; this is just so one can use `BTreeMap`s.
/// In particular, the order might differ across two runs of the same program.
);
// This is not #[derive]d, as this would wrongly require K: Default.