You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it would be useful to have functions to insert and remove items from arbitrary positions within a mutable vec.
In other words, to integrate this trait into vec::MutableVector;
pub trait VecInsertRemove<T> {
/// Insert an element at position i within self, shifting all
/// elements after position i one position to the right.
fn insert(&mut self, i: uint, x:T);
/// Remove the element at position i within self, shifting all
/// elements after position i one position to the left.
fn remove(&mut self, i: uint) -> T;
}
Is this desirable? I can send a pull request with these additions plus tests.
The text was updated successfully, but these errors were encountered:
Dretch
added a commit
to Dretch/rust
that referenced
this issue
Nov 25, 2012
I think it would be useful to have functions to insert and remove items from arbitrary positions within a mutable vec.
In other words, to integrate this trait into vec::MutableVector;
Is this desirable? I can send a pull request with these additions plus tests.
The text was updated successfully, but these errors were encountered: