Skip to content

Commit

Permalink
std: Add Vec to the prelude
Browse files Browse the repository at this point in the history
This is an incredibly common type, and it is expected to be used in many many
places. This type should be in the prelude.
  • Loading branch information
alexcrichton committed Mar 20, 2014
1 parent 8cfef59 commit 0305ed5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/libstd/prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down

0 comments on commit 0305ed5

Please sign in to comment.