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.
This commit is contained in:
Alex Crichton 2014-03-19 14:21:12 -07:00
parent 8cfef59cc0
commit 0305ed5d22

View file

@ -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};