Skip to main content

Set

Type Alias Set 

Source
pub type Set<V> = HashSet<V>;
Expand description

An alias for a simple set.

When the std feature is enabled, this is an alias for std::collections::HashSet. Otherwise, this is an alias for alloc::collections::BTreeSet.

Aliased Typeยง

pub struct Set<V> { /* private fields */ }