File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 88// option. This file may not be copied, modified, or distributed
99// except according to those terms.
1010
11- //! Sendable hash maps.
11+ //! An unordered map and set type implemented as hash tables
12+ //!
13+ //! The tables use a keyed hash with new random keys generated for each container, so the ordering
14+ //! of a set of keys in a hash table is randomized.
1215
1316/// Open addressing with linear probing.
1417pub mod linear {
Original file line number Diff line number Diff line change 88// option. This file may not be copied, modified, or distributed
99// except according to those terms.
1010
11- // Core operators
11+ //! Traits for the built-in operators
1212
1313#[ lang="drop" ]
1414pub trait Drop {
Original file line number Diff line number Diff line change 88// option. This file may not be copied, modified, or distributed
99// except according to those terms.
1010
11+ //! Base64 binary-to-text encoding
12+
1113use core:: iter;
1214use core:: str;
1315use core:: vec;
You can’t perform that action at this time.
0 commit comments