auto merge of #5574 : thestinger/rust/docstring, r=sanxiyn
This commit is contained in:
commit
f7f6013a62
@ -8,7 +8,10 @@
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
//! Sendable hash maps.
|
||||
//! An unordered map and set type implemented as hash tables
|
||||
//!
|
||||
//! The tables use a keyed hash with new random keys generated for each container, so the ordering
|
||||
//! of a set of keys in a hash table is randomized.
|
||||
|
||||
/// Open addressing with linear probing.
|
||||
pub mod linear {
|
||||
|
@ -8,7 +8,7 @@
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// Core operators
|
||||
//! Traits for the built-in operators
|
||||
|
||||
#[lang="drop"]
|
||||
pub trait Drop {
|
||||
|
@ -8,6 +8,8 @@
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
//! Base64 binary-to-text encoding
|
||||
|
||||
use core::iter;
|
||||
use core::str;
|
||||
use core::vec;
|
||||
|
Loading…
Reference in New Issue
Block a user