@@ -10,12 +10,14 @@ used features.
10
10
`core` includes modules corresponding to each of the integer types, each of
11
11
the floating point types, the `bool` type, tuples, characters, strings,
12
12
vectors (`vec`), shared boxes (`box`), and unsafe and borrowed pointers
13
- (`ptr`). Additionally, `core` provides very commonly used built-in types
14
- and operations, concurrency primitives, platform abstractions, I/O, and
15
- complete bindings to the C standard library.
16
-
17
- `core` is linked to all crates and its contents imported. Implicitly, all
18
- crates behave as if they included the following prologue:
13
+ (`ptr`). Additionally, `core` provides task management and creation (`task`),
14
+ communication primitives (`comm` and `pipes`), an efficient vector builder
15
+ (`dvec`), platform abstractions (`os` and `path`), basic I/O abstractions
16
+ (`io`), common traits (`cmp`, `num`, `to_str`), and complete bindings
17
+ to the C standard library (`libc`).
18
+
19
+ `core` is linked to all crates by default and its contents imported.
20
+ Implicitly, all crates behave as if they included the following prologue:
19
21
20
22
extern mod core;
21
23
use core::*;
0 commit comments