diff options
| author | Christoph Schmidler <c.schmidler@gmail.com> | 2019-12-09 20:13:42 +0100 |
|---|---|---|
| committer | Christoph Schmidler <c.schmidler@gmail.com> | 2019-12-09 20:13:42 +0100 |
| commit | a678628e58d06f46413e91ed699cdbc938b96cac (patch) | |
| tree | de5500921d57257d067f2d59d3df191e9c816d82 /src/libstd | |
| parent | fba2808587a662de0dddeb97586fdeab27fa3938 (diff) | |
| download | rust-a678628e58d06f46413e91ed699cdbc938b96cac.tar.gz rust-a678628e58d06f46413e91ed699cdbc938b96cac.zip | |
Update HashMap documentation hint of the used 'quadratic probing' and 'SIMD lookup' algorithms
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/collections/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/mod.rs b/src/libstd/collections/mod.rs index 522b8b25144..e8b9e9cb1f2 100644 --- a/src/libstd/collections/mod.rs +++ b/src/libstd/collections/mod.rs @@ -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::*; } |
