//! A simple wrapper for multisets
// FIXME export this as it's own crate
// The exported crate should mimic std::collections Set and Hash, ideally also generic on numeric
// types, also thing about checked vs saturating for counts
use BTreeMap;
;