Type Alias egui::id::IdSet

source ·
pub type IdSet = HashSet<Id, BuildIdHasher>;
Expand description

IdSet is a HashSet<Id> optimized by knowing that Id has good entropy, and doesn’t need more hashing.

Aliased Type§

struct IdSet {
    base: HashSet<Id, BuildIdHasher>,
}

Fields§

§base: HashSet<Id, BuildIdHasher>