File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -105,12 +105,14 @@ pub mod vec_deque;
105105
106106#[ stable( feature = "rust1" , since = "1.0.0" ) ]
107107pub mod btree_map {
108+ //! A map based on a B-Tree.
108109 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
109110 pub use btree:: map:: * ;
110111}
111112
112113#[ stable( feature = "rust1" , since = "1.0.0" ) ]
113114pub mod btree_set {
115+ //! A set based on a B-Tree.
114116 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
115117 pub use btree:: set:: * ;
116118}
Original file line number Diff line number Diff line change @@ -429,14 +429,16 @@ mod hash;
429429
430430#[ stable( feature = "rust1" , since = "1.0.0" ) ]
431431pub mod hash_map {
432- //! A hashmap
432+ //! A hash map implementation which uses linear probing with Robin
433+ //! Hood bucket stealing.
433434 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
434435 pub use super :: hash:: map:: * ;
435436}
436437
437438#[ stable( feature = "rust1" , since = "1.0.0" ) ]
438439pub mod hash_set {
439- //! A hashset
440+ //! An implementation of a hash set using the underlying representation of a
441+ //! HashMap where the value is ().
440442 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
441443 pub use super :: hash:: set:: * ;
442444}
You can’t perform that action at this time.
0 commit comments