about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-03-19 14:21:12 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-03-20 09:13:44 -0700
commit0305ed5d22e4a70e819c7e5989d8af7dafb3288e (patch)
treecd65a5ce1b388add4c10c10ea68a85e65fca91ac /src/libstd
parent8cfef59cc0922f15979bf4e8a0b344cecfa8d9e2 (diff)
downloadrust-0305ed5d22e4a70e819c7e5989d8af7dafb3288e.tar.gz
rust-0305ed5d22e4a70e819c7e5989d8af7dafb3288e.zip
std: Add Vec to the prelude
This is an incredibly common type, and it is expected to be used in many many
places. This type should be in the prelude.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/prelude.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/prelude.rs b/src/libstd/prelude.rs
index f3a5bd3d3b5..f8e56cf8a2f 100644
--- a/src/libstd/prelude.rs
+++ b/src/libstd/prelude.rs
@@ -59,6 +59,7 @@ pub use slice::{ImmutableEqVector, ImmutableTotalOrdVector, ImmutableCloneableVe
 pub use slice::{OwnedVector, OwnedCloneableVector, OwnedEqVector};
 pub use slice::{MutableVector, MutableTotalOrdVector};
 pub use slice::{Vector, VectorVector, CloneableVector, ImmutableVector};
+pub use vec::Vec;
 
 // Reexported runtime types
 pub use comm::{channel, Sender, Receiver};