Skip to content

Commit 59de385

Browse files
committed
core: Remove the dvec module
1 parent 2c87920 commit 59de385

File tree

4 files changed

+4
-400
lines changed

4 files changed

+4
-400
lines changed

src/libcore/core.rc

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ used features.
2121
the floating point types, the `bool` type, tuples, characters, strings,
2222
vectors (`vec`), managed boxes (`managed`), owned boxes (`owned`), and unsafe
2323
and borrowed pointers (`ptr`). Additionally, `core` provides task management
24-
and creation (`task`), communication primitives (`comm` and `pipes`), an
25-
efficient vector builder (`dvec`), platform abstractions (`os` and `path`),
26-
basic I/O abstractions (`io`), common traits (`cmp`, `num`, `to_str`), and
27-
complete bindings to the C standard library (`libc`).
24+
and creation (`task`), communication primitives (`comm` and `pipes`), platform
25+
abstractions (`os` and `path`), basic I/O abstractions (`io`), common traits
26+
(`cmp`, `num`, `to_str`), and complete bindings to the C standard library
27+
(`libc`).
2828

2929
`core` is linked to all crates by default and its contents imported.
3030
Implicitly, all crates behave as if they included the following prologue:
@@ -141,9 +141,6 @@ pub mod container;
141141
pub mod option;
142142
pub mod result;
143143
pub mod either;
144-
pub mod dvec;
145-
#[path="iter-trait.rs"] #[merge = "iter-trait/dvec.rs"]
146-
pub mod dvec_iter;
147144
pub mod dlist;
148145
#[path="iter-trait.rs"] #[merge = "iter-trait/dlist.rs"]
149146
pub mod dlist_iter;

src/libcore/dvec.rs

Lines changed: 0 additions & 355 deletions
This file was deleted.

0 commit comments

Comments
 (0)