Skip to content

Commit 0305ed5

Browse files
committed
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.
1 parent 8cfef59 commit 0305ed5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/libstd/prelude.rs

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ pub use slice::{ImmutableEqVector, ImmutableTotalOrdVector, ImmutableCloneableVe
5959
pub use slice::{OwnedVector, OwnedCloneableVector, OwnedEqVector};
6060
pub use slice::{MutableVector, MutableTotalOrdVector};
6161
pub use slice::{Vector, VectorVector, CloneableVector, ImmutableVector};
62+
pub use vec::Vec;
6263

6364
// Reexported runtime types
6465
pub use comm::{channel, Sender, Receiver};

0 commit comments

Comments
 (0)