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

HashSet which contains at least a single item.

Aliased Type§

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