flâneur — a map of the web's best reading

HashMap in std::collections - Rust

doc.rust-lang.org · 7,108 words · saved by 1 readers

A hash map implemented with quadratic probing and SIMD lookup.

HashMap in std::collections - Rust Skip to main content This old browser is unsupported and will most likely display funky things. HashMap std :: collections Struct HashMap Copy item path 1.0.0 · Source pub struct HashMap<K, V, S = RandomState , A: Allocator = Global > { /* private fields */ } Expand description A hash map implemented with quadratic probing and SIMD lookup. By default, HashMap uses a hashing algorithm selected to provide resistance against HashDoS attacks. The algorithm is randomly seeded, and a reasonable best-effort is made to generate this seed from a high quality, secure s

Explore this link on the map →

related reading