Skip to content

Commit badde74

Browse files
committed
Add slice::MutableCloneableVector to the prelude
Every other trait in slice is in the prelude, so it makes sense to provide MutableCloneableVector as well.
1 parent 6291955 commit badde74

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/libstd/prelude.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ pub use to_str::{ToStr, IntoStr};
7676
pub use tuple::{Tuple1, Tuple2, Tuple3, Tuple4};
7777
pub use tuple::{Tuple5, Tuple6, Tuple7, Tuple8};
7878
pub use tuple::{Tuple9, Tuple10, Tuple11, Tuple12};
79-
pub use slice::{ImmutableEqVector, ImmutableTotalOrdVector, ImmutableCloneableVector};
80-
pub use slice::{OwnedVector};
81-
pub use slice::{MutableVector, MutableTotalOrdVector, MutableVectorAllocating};
82-
pub use slice::{Vector, VectorVector, CloneableVector, ImmutableVector};
79+
pub use slice::{CloneableVector, ImmutableCloneableVector, MutableCloneableVector};
80+
pub use slice::{ImmutableVector, MutableVector};
81+
pub use slice::{ImmutableEqVector, ImmutableTotalOrdVector, MutableTotalOrdVector};
82+
pub use slice::{Vector, VectorVector, OwnedVector, MutableVectorAllocating};
8383
pub use strbuf::StrBuf;
8484
pub use vec::Vec;
8585

0 commit comments

Comments
 (0)