]> git.lizzy.rs Git - rust.git/blob - src/liballoc/lib.rs
e98b58994bfbb3bf5e63b23d83535e065b7e4011
[rust.git] / src / liballoc / lib.rs
1 // Copyright 2014-2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! # The Rust core allocation and collections library
12 //!
13 //! This library provides smart pointers and collections for managing
14 //! heap-allocated values.
15 //!
16 //! This library, like libcore, is not intended for general usage, but rather as
17 //! a building block of other libraries. The types and interfaces in this
18 //! library are re-exported through the [standard library](../std/index.html),
19 //! and should not be used through this library.
20 //!
21 //! ## Boxed values
22 //!
23 //! The [`Box`](boxed/index.html) type is a smart pointer type. There can
24 //! only be one owner of a `Box`, and the owner can decide to mutate the
25 //! contents, which live on the heap.
26 //!
27 //! This type can be sent among threads efficiently as the size of a `Box` value
28 //! is the same as that of a pointer. Tree-like data structures are often built
29 //! with boxes because each node often has only one owner, the parent.
30 //!
31 //! ## Reference counted pointers
32 //!
33 //! The [`Rc`](rc/index.html) type is a non-threadsafe reference-counted pointer
34 //! type intended for sharing memory within a thread. An `Rc` pointer wraps a
35 //! type, `T`, and only allows access to `&T`, a shared reference.
36 //!
37 //! This type is useful when inherited mutability (such as using `Box`) is too
38 //! constraining for an application, and is often paired with the `Cell` or
39 //! `RefCell` types in order to allow mutation.
40 //!
41 //! ## Atomically reference counted pointers
42 //!
43 //! The [`Arc`](arc/index.html) type is the threadsafe equivalent of the `Rc`
44 //! type. It provides all the same functionality of `Rc`, except it requires
45 //! that the contained type `T` is shareable. Additionally, `Arc<T>` is itself
46 //! sendable while `Rc<T>` is not.
47 //!
48 //! This type allows for shared access to the contained data, and is often
49 //! paired with synchronization primitives such as mutexes to allow mutation of
50 //! shared resources.
51 //!
52 //! ## Collections
53 //!
54 //! Implementations of the most common general purpose data structures are
55 //! defined in this library. They are re-exported through the
56 //! [standard collections library](../std/collections/index.html).
57 //!
58 //! ## Heap interfaces
59 //!
60 //! The [`heap`](heap/index.html) module defines the low-level interface to the
61 //! default global allocator. It is not compatible with the libc allocator API.
62
63 #![allow(unused_attributes)]
64 #![unstable(feature = "alloc",
65             reason = "this library is unlikely to be stabilized in its current \
66                       form or name",
67             issue = "27783")]
68 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
69        html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
70        html_root_url = "https://doc.rust-lang.org/nightly/",
71        issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
72        test(no_crate_inject, attr(allow(unused_variables), deny(warnings))))]
73 #![no_std]
74 #![needs_allocator]
75 #![deny(warnings)]
76 #![deny(missing_debug_implementations)]
77
78 #![cfg_attr(test, allow(deprecated))] // rand
79 #![cfg_attr(test, feature(placement_in))]
80 #![cfg_attr(not(test), feature(core_float))]
81 #![cfg_attr(not(test), feature(exact_size_is_empty))]
82 #![cfg_attr(not(test), feature(generator_trait))]
83 #![cfg_attr(test, feature(rand, test))]
84 #![feature(allow_internal_unstable)]
85 #![feature(ascii_ctype)]
86 #![feature(box_into_raw_non_null)]
87 #![feature(box_patterns)]
88 #![feature(box_syntax)]
89 #![feature(cfg_target_has_atomic)]
90 #![feature(coerce_unsized)]
91 #![feature(collections_range)]
92 #![feature(const_fn)]
93 #![feature(core_intrinsics)]
94 #![feature(custom_attribute)]
95 #![feature(dropck_eyepatch)]
96 #![feature(exact_size_is_empty)]
97 #![feature(fmt_internals)]
98 #![feature(from_ref)]
99 #![feature(fundamental)]
100 #![feature(generic_param_attrs)]
101 #![cfg_attr(stage0, feature(i128_type))]
102 #![feature(iter_rfold)]
103 #![feature(lang_items)]
104 #![feature(needs_allocator)]
105 #![feature(nonzero)]
106 #![feature(offset_to)]
107 #![feature(optin_builtin_traits)]
108 #![feature(pattern)]
109 #![feature(pin)]
110 #![feature(placement_in_syntax)]
111 #![feature(placement_new_protocol)]
112 #![feature(ptr_internals)]
113 #![feature(rustc_attrs)]
114 #![feature(slice_get_slice)]
115 #![feature(slice_rsplit)]
116 #![feature(specialization)]
117 #![feature(staged_api)]
118 #![feature(str_internals)]
119 #![feature(trusted_len)]
120 #![feature(try_reserve)]
121 #![feature(unboxed_closures)]
122 #![feature(unicode)]
123 #![feature(unsize)]
124 #![feature(allocator_internals)]
125 #![feature(on_unimplemented)]
126 #![feature(exact_chunks)]
127 #![feature(pointer_methods)]
128 #![feature(inclusive_range_fields)]
129
130 #![cfg_attr(not(test), feature(fn_traits, placement_new_protocol, swap_with_slice, i128))]
131 #![cfg_attr(test, feature(test, box_heap))]
132
133 // Allow testing this library
134
135 #[cfg(test)]
136 #[macro_use]
137 extern crate std;
138 #[cfg(test)]
139 extern crate test;
140 #[cfg(test)]
141 extern crate rand;
142
143 extern crate std_unicode;
144
145 // Module with internal macros used by other modules (needs to be included before other modules).
146 #[macro_use]
147 mod macros;
148
149 // Allocator trait and helper struct definitions
150
151 pub mod allocator;
152
153 // Heaps provided for low-level allocation strategies
154
155 pub mod heap;
156
157 // Primitive types using the heaps above
158
159 // Need to conditionally define the mod from `boxed.rs` to avoid
160 // duplicating the lang-items when building in test cfg; but also need
161 // to allow code to have `use boxed::HEAP;`
162 // and `use boxed::Box;` declarations.
163 #[cfg(not(test))]
164 pub mod boxed;
165 #[cfg(test)]
166 mod boxed {
167     pub use std::boxed::{Box, IntermediateBox, HEAP};
168 }
169 #[cfg(test)]
170 mod boxed_test;
171 #[cfg(target_has_atomic = "ptr")]
172 pub mod arc;
173 pub mod rc;
174 pub mod raw_vec;
175
176 // collections modules
177 pub mod binary_heap;
178 mod btree;
179 pub mod borrow;
180 pub mod fmt;
181 pub mod linked_list;
182 pub mod slice;
183 pub mod str;
184 pub mod string;
185 pub mod vec;
186 pub mod vec_deque;
187
188 #[stable(feature = "rust1", since = "1.0.0")]
189 pub mod btree_map {
190     //! A map based on a B-Tree.
191     #[stable(feature = "rust1", since = "1.0.0")]
192     pub use btree::map::*;
193 }
194
195 #[stable(feature = "rust1", since = "1.0.0")]
196 pub mod btree_set {
197     //! A set based on a B-Tree.
198     #[stable(feature = "rust1", since = "1.0.0")]
199     pub use btree::set::*;
200 }
201
202 #[cfg(not(test))]
203 mod std {
204     pub use core::ops;      // RangeFull
205 }
206
207 /// An intermediate trait for specialization of `Extend`.
208 #[doc(hidden)]
209 trait SpecExtend<I: IntoIterator> {
210     /// Extends `self` with the contents of the given iterator.
211     fn spec_extend(&mut self, iter: I);
212 }
213
214 #[doc(no_inline)]
215 pub use binary_heap::BinaryHeap;
216 #[doc(no_inline)]
217 pub use btree_map::BTreeMap;
218 #[doc(no_inline)]
219 pub use btree_set::BTreeSet;
220 #[doc(no_inline)]
221 pub use linked_list::LinkedList;
222 #[doc(no_inline)]
223 pub use vec_deque::VecDeque;
224 #[doc(no_inline)]
225 pub use string::String;
226 #[doc(no_inline)]
227 pub use vec::Vec;