about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorbachm <Ab@vapor.com>2014-06-08 17:05:32 +0200
committerbachm <Ab@vapor.com>2014-06-13 09:55:36 +0200
commit78053f08253de974ea6e8a6ee8bb1f4c082daeab (patch)
treeba6d35bc8bcd5d990b075239a93705f7789e66ff /src/libcore
parent5d9bceb1440b6bb5759bc3c1e5ad2170a199d0ce (diff)
downloadrust-78053f08253de974ea6e8a6ee8bb1f4c082daeab.tar.gz
rust-78053f08253de974ea6e8a6ee8bb1f4c082daeab.zip
added get_mut() for [T]
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/slice.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libcore/slice.rs b/src/libcore/slice.rs
index d579d044892..bb24d53458c 100644
--- a/src/libcore/slice.rs
+++ b/src/libcore/slice.rs
@@ -717,6 +717,9 @@ impl<'a, T: Ord> ImmutableOrdVector<T> for &'a [T] {
 /// Extension methods for vectors such that their elements are
 /// mutable.
 pub trait MutableVector<'a, T> {
+    /// Returns a mutable reference to the element at the given index,
+    /// or `None` if the index is out of bounds
+    fn get_mut(self, index: uint) -> Option<&'a mut T>;
     /// Work with `self` as a mut slice.
     /// Primarily intended for getting a &mut [T] from a [T, ..N].
     fn as_mut_slice(self) -> &'a mut [T];
@@ -921,6 +924,11 @@ pub trait MutableVector<'a, T> {
 
 impl<'a,T> MutableVector<'a, T> for &'a mut [T] {
     #[inline]
+    fn get_mut(self, index: uint) -> Option<&'a mut T> {
+        if index < self.len() { Some(&mut self[index]) } else { None }
+    }
+
+    #[inline]
     fn as_mut_slice(self) -> &'a mut [T] { self }
 
     fn mut_slice(self, start: uint, end: uint) -> &'a mut [T] {