pub type NonEmptyOrdSet<T, const MAX: usize = U64> = Confined<BTreeSet<T>, ONE, MAX>;
Expand description

BTreeSet which contains at least a single item.

Aliased Type§

struct NonEmptyOrdSet<T, const MAX: usize = U64>(/* private fields */);