We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2888563 commit 4d3b0a1Copy full SHA for 4d3b0a1
src/libcore/hashmap.rs
@@ -8,7 +8,10 @@
8
// option. This file may not be copied, modified, or distributed
9
// except according to those terms.
10
11
-//! Sendable hash maps.
+//! An unordered map and set type implemented as hash tables
12
+//!
13
+//! The tables use a keyed hash with new random keys generated for each container, so the ordering
14
+//! of a set of keys in a hash table is randomized.
15
16
/// Open addressing with linear probing.
17
pub mod linear {
0 commit comments