File tree 2 files changed +6
-2
lines changed
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;
105
105
106
106
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
107
107
pub mod btree_map {
108
+ //! A map based on a B-Tree.
108
109
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
109
110
pub use btree:: map:: * ;
110
111
}
111
112
112
113
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
113
114
pub mod btree_set {
115
+ //! A set based on a B-Tree.
114
116
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
115
117
pub use btree:: set:: * ;
116
118
}
Original file line number Diff line number Diff line change @@ -429,14 +429,16 @@ mod hash;
429
429
430
430
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
431
431
pub mod hash_map {
432
- //! A hashmap
432
+ //! A hash map implementation which uses linear probing with Robin
433
+ //! Hood bucket stealing.
433
434
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
434
435
pub use super :: hash:: map:: * ;
435
436
}
436
437
437
438
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
438
439
pub 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 ().
440
442
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
441
443
pub use super :: hash:: set:: * ;
442
444
}
You can’t perform that action at this time.
0 commit comments