HashSetFnv

Type Alias HashSetFnv 

Source
pub type HashSetFnv<V> = HashSet<V, BuildHasherDefault<FnvHasher>>;
Expand description

Hash Set using fnv: an implementation of the Fowler–Noll–Vo hash function.

§Example

let mut boxes = HashSetFnv::<Box3D>::default();
boxes.insert(Box3D::from_xyz_whl(0, 0, 0, 100, 200, 300, 1, 0));

Aliased Type§

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