diff options
| author | bors <bors@rust-lang.org> | 2014-05-21 20:11:27 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-05-21 20:11:27 -0700 |
| commit | f78eb1434152224dae7d0f48528b5b0c064e9bc6 (patch) | |
| tree | 142e9bff294241a245793aa06b654866651760c0 /src/libstd | |
| parent | 257a73ce8273d026f2af1a5021ae2d1a4e7b95e5 (diff) | |
| parent | bf0c6d8166b1b1a3c45a3131a6f019ed8a005a1f (diff) | |
| download | rust-f78eb1434152224dae7d0f48528b5b0c064e9bc6.tar.gz rust-f78eb1434152224dae7d0f48528b5b0c064e9bc6.zip | |
auto merge of #14307 : kballard/rust/vim_prelude_mutablecloneablevector, r=cmr
Add slice::MutableCloneableVector to the prelude. It's the only slice trait that's currently missing. Update rust.vim to match the latest prelude and current set of keywords. Also teach it to handle box placement expressions specially.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/prelude.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstd/prelude.rs b/src/libstd/prelude.rs index e39d8d34447..bd367293db8 100644 --- a/src/libstd/prelude.rs +++ b/src/libstd/prelude.rs @@ -76,10 +76,10 @@ pub use to_str::{ToStr, IntoStr}; pub use tuple::{Tuple1, Tuple2, Tuple3, Tuple4}; pub use tuple::{Tuple5, Tuple6, Tuple7, Tuple8}; pub use tuple::{Tuple9, Tuple10, Tuple11, Tuple12}; -pub use slice::{ImmutableEqVector, ImmutableTotalOrdVector, ImmutableCloneableVector}; -pub use slice::{OwnedVector}; -pub use slice::{MutableVector, MutableTotalOrdVector, MutableVectorAllocating}; -pub use slice::{Vector, VectorVector, CloneableVector, ImmutableVector}; +pub use slice::{CloneableVector, ImmutableCloneableVector, MutableCloneableVector}; +pub use slice::{ImmutableVector, MutableVector}; +pub use slice::{ImmutableEqVector, ImmutableTotalOrdVector, MutableTotalOrdVector}; +pub use slice::{Vector, VectorVector, OwnedVector, MutableVectorAllocating}; pub use strbuf::StrBuf; pub use vec::Vec; |
