pub type NonEmptyOrdMap<K, V, const MAX: usize = U64> = Confined<BTreeMap<K, V>, ONE, MAX>;
Expand description

BTreeMap which contains at least a single item.

Aliased Type§

struct NonEmptyOrdMap<K, V, const MAX: usize = U64>(/* private fields */);