Rollup merge of #67181 - TheSamsa:update-hashmap-doc, r=Dylan-DPC
Update hashmap doc Update hint to the used algorithms. Skimmed over the longer description but could not find another mentioning of the old algorithms. Closes #67093
This commit is contained in:
commit
b8f8638a77
1 changed files with 1 additions and 1 deletions
|
@ -433,7 +433,7 @@ mod hash;
|
|||
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
pub mod hash_map {
|
||||
//! A hash map implemented with linear probing and Robin Hood bucket stealing.
|
||||
//! A hash map implemented with quadratic probing and SIMD lookup.
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
pub use super::hash::map::*;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue