pub type NonEmptyOrdMap<K, V, const MAX: usize = U64> = Confined<BTreeMap<K, V>, ONE, MAX>;
BTreeMap which contains at least a single item.
BTreeMap
struct NonEmptyOrdMap<K, V, const MAX: usize = U64>(/* private fields */);