Skip to content

Commit

Permalink
Update HashMap documentation hint of the used 'quadratic probing' and…
Browse files Browse the repository at this point in the history
… 'SIMD lookup' algorithms
  • Loading branch information
TheSamsa committed Dec 9, 2019
1 parent fba2808 commit a678628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/collections/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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::*;
}
Expand Down

0 comments on commit a678628

Please sign in to comment.