]> git.lizzy.rs Git - rust.git/blob - src/libstd/lib.rs
rollup merge of #20642: michaelwoerister/sane-source-locations-pt1
[rust.git] / src / libstd / lib.rs
1 // Copyright 2012-2014 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 Standard Library
12 //!
13 //! The Rust Standard Library provides the essential runtime
14 //! functionality for building portable Rust software.
15 //! It is linked to all Rust crates by default.
16 //!
17 //! ## Intrinsic types and operations
18 //!
19 //! The [`ptr`](ptr/index.html) and [`mem`](mem/index.html)
20 //! modules deal with unsafe pointers and memory manipulation.
21 //! [`marker`](marker/index.html) defines the special built-in traits,
22 //! and [`raw`](raw/index.html) the runtime representation of Rust types.
23 //! These are some of the lowest-level building blocks in Rust.
24 //!
25 //! ## Math on primitive types and math traits
26 //!
27 //! Although basic operations on primitive types are implemented
28 //! directly by the compiler, the standard library additionally
29 //! defines many common operations through traits defined in
30 //! mod [`num`](num/index.html).
31 //!
32 //! ## Pervasive types
33 //!
34 //! The [`option`](option/index.html) and [`result`](result/index.html)
35 //! modules define optional and error-handling types, `Option` and `Result`.
36 //! [`iter`](iter/index.html) defines Rust's iterator protocol
37 //! along with a wide variety of iterators.
38 //! [`Cell` and `RefCell`](cell/index.html) are for creating types that
39 //! manage their own mutability.
40 //!
41 //! ## Vectors, slices and strings
42 //!
43 //! The common container type, `Vec`, a growable vector backed by an
44 //! array, lives in the [`vec`](vec/index.html) module. References to
45 //! arrays, `&[T]`, more commonly called "slices", are built-in types
46 //! for which the [`slice`](slice/index.html) module defines many
47 //! methods.
48 //!
49 //! `&str`, a UTF-8 string, is a built-in type, and the standard library
50 //! defines methods for it on a variety of traits in the
51 //! [`str`](str/index.html) module. Rust strings are immutable;
52 //! use the `String` type defined in [`string`](string/index.html)
53 //! for a mutable string builder.
54 //!
55 //! For converting to strings use the [`format!`](fmt/index.html)
56 //! macro, and for converting from strings use the
57 //! [`FromStr`](str/trait.FromStr.html) trait.
58 //!
59 //! ## Platform abstractions
60 //!
61 //! Besides basic data types, the standard library is largely concerned
62 //! with abstracting over differences in common platforms, most notably
63 //! Windows and Unix derivatives. The [`os`](os/index.html) module
64 //! provides a number of basic functions for interacting with the
65 //! operating environment, including program arguments, environment
66 //! variables, and directory navigation. The [`path`](path/index.html)
67 //! module encapsulates the platform-specific rules for dealing
68 //! with file paths.
69 //!
70 //! `std` also includes modules for interoperating with the
71 //! C language: [`c_str`](c_str/index.html) and
72 //! [`c_vec`](c_vec/index.html).
73 //!
74 //! ## Concurrency, I/O, and the runtime
75 //!
76 //! The [`thread`](thread/index.html) module contains Rust's threading abstractions,
77 //! while [`comm`](comm/index.html) contains the channel types for message
78 //! passing. [`sync`](sync/index.html) contains further, primitive, shared
79 //! memory types, including [`atomic`](sync/atomic/index.html).
80 //!
81 //! Common types of I/O, including files, TCP, UDP, pipes, Unix domain sockets,
82 //! timers, and process spawning, are defined in the [`io`](io/index.html) module.
83 //!
84 //! Rust's I/O and concurrency depends on a small runtime interface
85 //! that lives, along with its support code, in mod [`rt`](rt/index.html).
86 //! While a notable part of the standard library's architecture, this
87 //! module is not intended for public use.
88 //!
89 //! ## The Rust prelude and macros
90 //!
91 //! Finally, the [`prelude`](prelude/index.html) defines a
92 //! common set of traits, types, and functions that are made available
93 //! to all code by default. [`macros`](macros/index.html) contains
94 //! all the standard macros, such as `assert!`, `panic!`, `println!`,
95 //! and `format!`, also available to all Rust code.
96
97 #![crate_name = "std"]
98 #![stable]
99 #![staged_api]
100 #![crate_type = "rlib"]
101 #![crate_type = "dylib"]
102 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
103        html_favicon_url = "http://www.rust-lang.org/favicon.ico",
104        html_root_url = "http://doc.rust-lang.org/nightly/",
105        html_playground_url = "http://play.rust-lang.org/")]
106
107 #![allow(unknown_features)]
108 #![feature(linkage, thread_local, asm)]
109 #![feature(lang_items, unsafe_destructor)]
110 #![feature(slicing_syntax, unboxed_closures)]
111 #![feature(box_syntax)]
112 #![feature(old_impl_check)]
113 #![feature(optin_builtin_traits)]
114 #![feature(int_uint)]
115 #![feature(int_uint)]
116 #![allow(unstable)]
117
118 // Don't link to std. We are std.
119 #![no_std]
120
121 #![deny(missing_docs)]
122
123 #[cfg(test)]
124 #[macro_use]
125 extern crate log;
126
127 #[macro_use]
128 #[macro_reexport(assert, assert_eq, debug_assert, debug_assert_eq,
129     unreachable, unimplemented, write, writeln)]
130 extern crate core;
131
132 #[macro_use]
133 #[macro_reexport(vec)]
134 extern crate "collections" as core_collections;
135
136 extern crate "rand" as core_rand;
137 extern crate alloc;
138 extern crate unicode;
139 extern crate libc;
140
141 #[macro_use] #[no_link] extern crate rustc_bitflags;
142
143 // Make std testable by not duplicating lang items. See #2912
144 #[cfg(test)] extern crate "std" as realstd;
145 #[cfg(test)] pub use realstd::marker;
146 #[cfg(test)] pub use realstd::ops;
147 #[cfg(test)] pub use realstd::cmp;
148 #[cfg(test)] pub use realstd::boxed;
149
150
151 // NB: These reexports are in the order they should be listed in rustdoc
152
153 pub use core::any;
154 pub use core::borrow;
155 pub use core::cell;
156 pub use core::clone;
157 #[cfg(not(test))] pub use core::cmp;
158 pub use core::default;
159 pub use core::finally;
160 pub use core::hash;
161 pub use core::intrinsics;
162 pub use core::iter;
163 #[cfg(not(test))] pub use core::marker;
164 pub use core::mem;
165 #[cfg(not(test))] pub use core::ops;
166 pub use core::ptr;
167 pub use core::raw;
168 pub use core::simd;
169 pub use core::result;
170 pub use core::option;
171 pub use core::error;
172
173 #[cfg(not(test))] pub use alloc::boxed;
174 pub use alloc::rc;
175
176 pub use core_collections::slice;
177 pub use core_collections::str;
178 pub use core_collections::string;
179 #[stable]
180 pub use core_collections::vec;
181
182 pub use unicode::char;
183
184 /* Exported macros */
185
186 #[macro_use]
187 mod macros;
188
189 mod rtdeps;
190
191 /* The Prelude. */
192
193 pub mod prelude;
194
195
196 /* Primitive types */
197
198 #[path = "num/float_macros.rs"]
199 #[macro_use]
200 mod float_macros;
201
202 #[path = "num/int_macros.rs"]
203 #[macro_use]
204 mod int_macros;
205
206 #[path = "num/uint_macros.rs"]
207 #[macro_use]
208 mod uint_macros;
209
210 #[path = "num/int.rs"]  pub mod int;
211 #[path = "num/isize.rs"]  pub mod isize;
212 #[path = "num/i8.rs"]   pub mod i8;
213 #[path = "num/i16.rs"]  pub mod i16;
214 #[path = "num/i32.rs"]  pub mod i32;
215 #[path = "num/i64.rs"]  pub mod i64;
216
217 #[path = "num/uint.rs"] pub mod uint;
218 #[path = "num/usize.rs"] pub mod usize;
219 #[path = "num/u8.rs"]   pub mod u8;
220 #[path = "num/u16.rs"]  pub mod u16;
221 #[path = "num/u32.rs"]  pub mod u32;
222 #[path = "num/u64.rs"]  pub mod u64;
223
224 #[path = "num/f32.rs"]   pub mod f32;
225 #[path = "num/f64.rs"]   pub mod f64;
226
227 pub mod ascii;
228 pub mod thunk;
229
230 /* Common traits */
231
232 pub mod num;
233
234 /* Runtime and platform support */
235
236 #[macro_use]
237 pub mod thread_local;
238
239 pub mod dynamic_lib;
240 pub mod ffi;
241 pub mod fmt;
242 pub mod io;
243 pub mod os;
244 pub mod path;
245 pub mod rand;
246 pub mod time;
247
248 /* Common data structures */
249
250 pub mod collections;
251
252 /* Threads and communication */
253
254 pub mod thread;
255 pub mod sync;
256
257 #[cfg(unix)]
258 #[path = "sys/unix/mod.rs"] mod sys;
259 #[cfg(windows)]
260 #[path = "sys/windows/mod.rs"] mod sys;
261
262 #[path = "sys/common/mod.rs"] mod sys_common;
263
264 pub mod rt;
265 mod failure;
266
267 // Documentation for primitive types
268
269 mod bool;
270 mod unit;
271 mod tuple;
272
273 // A curious inner-module that's not exported that contains the binding
274 // 'std' so that macro-expanded references to std::error and such
275 // can be resolved within libstd.
276 #[doc(hidden)]
277 mod std {
278     // mods used for deriving
279     pub use clone;
280     pub use cmp;
281     pub use hash;
282     pub use default;
283
284     pub use sync; // used for select!()
285     pub use error; // used for try!()
286     pub use fmt; // used for any formatting strings
287     pub use io; // used for println!()
288     pub use option; // used for bitflags!{}
289     pub use rt; // used for panic!()
290     pub use vec; // used for vec![]
291     pub use cell; // used for tls!
292     pub use thread_local; // used for thread_local!
293     pub use marker;  // used for tls!
294     pub use ops; // used for bitflags!
295
296     // The test runner calls ::std::os::args() but really wants realstd
297     #[cfg(test)] pub use realstd::os as os;
298     // The test runner requires std::slice::Vector, so re-export std::slice just for it.
299     //
300     // It is also used in vec![]
301     pub use slice;
302
303     pub use boxed; // used for vec![]
304
305 }