]> git.lizzy.rs Git - rust.git/blob - src/libcore/lib.rs
drive-by doc fixes
[rust.git] / src / libcore / lib.rs
1 // Copyright 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 Core Library
12 //!
13 //! The Rust Core Library is the dependency-free[^free] foundation of [The
14 //! Rust Standard Library](../std/index.html). It is the portable glue
15 //! between the language and its libraries, defining the intrinsic and
16 //! primitive building blocks of all Rust code. It links to no
17 //! upstream libraries, no system libraries, and no libc.
18 //!
19 //! [^free]: Strictly speaking, there are some symbols which are needed but
20 //!          they aren't always necessary.
21 //!
22 //! The core library is *minimal*: it isn't even aware of heap allocation,
23 //! nor does it provide concurrency or I/O. These things require
24 //! platform integration, and this library is platform-agnostic.
25 //!
26 //! # How to use the core library
27 //!
28 // FIXME: Fill me in with more detail when the interface settles
29 //! This library is built on the assumption of a few existing symbols:
30 //!
31 //! * `memcpy`, `memcmp`, `memset` - These are core memory routines which are
32 //!   often generated by LLVM. Additionally, this library can make explicit
33 //!   calls to these functions. Their signatures are the same as found in C.
34 //!   These functions are often provided by the system libc, but can also be
35 //!   provided by the [rlibc crate](https://crates.io/crates/rlibc).
36 //!
37 //! * `rust_begin_unwind` - This function takes three arguments, a
38 //!   `fmt::Arguments`, a `&str`, and a `u32`. These three arguments dictate
39 //!   the panic message, the file at which panic was invoked, and the line.
40 //!   It is up to consumers of this core library to define this panic
41 //!   function; it is only required to never return.
42
43 // Since libcore defines many fundamental lang items, all tests live in a
44 // separate crate, libcoretest, to avoid bizarre issues.
45
46 #![crate_name = "core"]
47 #![stable(feature = "core", since = "1.6.0")]
48 #![crate_type = "rlib"]
49 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
50        html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
51        html_root_url = "https://doc.rust-lang.org/nightly/",
52        html_playground_url = "https://play.rust-lang.org/",
53        issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
54        test(no_crate_inject, attr(deny(warnings))),
55        test(attr(allow(dead_code, deprecated, unused_variables, unused_mut))))]
56
57 #![no_core]
58 #![deny(missing_docs)]
59
60 #![feature(allow_internal_unstable)]
61 #![feature(associated_type_defaults)]
62 #![feature(concat_idents)]
63 #![feature(const_fn)]
64 #![feature(custom_attribute)]
65 #![feature(fundamental)]
66 #![feature(intrinsics)]
67 #![feature(lang_items)]
68 #![feature(no_core)]
69 #![feature(on_unimplemented)]
70 #![feature(optin_builtin_traits)]
71 #![feature(reflect)]
72 #![feature(unwind_attributes)]
73 #![feature(repr_simd, platform_intrinsics)]
74 #![feature(staged_api)]
75 #![feature(unboxed_closures)]
76
77 #[macro_use]
78 mod macros;
79
80 #[path = "num/float_macros.rs"]
81 #[macro_use]
82 mod float_macros;
83
84 #[path = "num/int_macros.rs"]
85 #[macro_use]
86 mod int_macros;
87
88 #[path = "num/uint_macros.rs"]
89 #[macro_use]
90 mod uint_macros;
91
92 #[path = "num/isize.rs"]  pub mod isize;
93 #[path = "num/i8.rs"]   pub mod i8;
94 #[path = "num/i16.rs"]  pub mod i16;
95 #[path = "num/i32.rs"]  pub mod i32;
96 #[path = "num/i64.rs"]  pub mod i64;
97
98 #[path = "num/usize.rs"] pub mod usize;
99 #[path = "num/u8.rs"]   pub mod u8;
100 #[path = "num/u16.rs"]  pub mod u16;
101 #[path = "num/u32.rs"]  pub mod u32;
102 #[path = "num/u64.rs"]  pub mod u64;
103
104 #[path = "num/f32.rs"]   pub mod f32;
105 #[path = "num/f64.rs"]   pub mod f64;
106
107 #[macro_use]
108 pub mod num;
109
110 /* The libcore prelude, not as all-encompassing as the libstd prelude */
111
112 pub mod prelude;
113
114 /* Core modules for ownership management */
115
116 pub mod intrinsics;
117 pub mod mem;
118 pub mod nonzero;
119 pub mod ptr;
120
121 /* Core language traits */
122
123 pub mod marker;
124 pub mod ops;
125 pub mod cmp;
126 pub mod clone;
127 pub mod default;
128 pub mod convert;
129 pub mod borrow;
130
131 /* Core types and methods on primitives */
132
133 pub mod any;
134 pub mod array;
135 pub mod sync;
136 pub mod cell;
137 pub mod char;
138 pub mod panicking;
139 pub mod iter;
140 pub mod option;
141 pub mod raw;
142 pub mod result;
143
144 pub mod slice;
145 pub mod str;
146 pub mod hash;
147 pub mod fmt;
148
149 // note: does not need to be public
150 mod tuple;