File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
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.
12
15
13
16
/// Open addressing with linear probing.
14
17
pub mod linear {
Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- // Core operators
11
+ //! Traits for the built-in operators
12
12
13
13
#[ lang="drop" ]
14
14
pub trait Drop {
Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
+ //! Base64 binary-to-text encoding
12
+
11
13
use core:: iter;
12
14
use core:: str;
13
15
use core:: vec;
You can’t perform that action at this time.
0 commit comments