From df617195f06c27821803acc87e0b1b0dd288799a Mon Sep 17 00:00:00 2001 From: madseagames Date: Sat, 3 Dec 2016 12:47:27 -0400 Subject: [PATCH] Added remove_from to vec.rs --- src/libcollections/vec.rs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs index 3134e3c2ce1..d38c9f6e1cf 100644 --- a/src/libcollections/vec.rs +++ b/src/libcollections/vec.rs @@ -1335,6 +1335,27 @@ impl Vec { pub fn dedup(&mut self) { self.dedup_by(|a, b| a == b) } + + /// Removes the first instance of `item` from the vector if the item exists. + /// + /// # Examples + /// + /// ``` + ///# #![feature(vec_remove_item)] + /// let mut vec = vec![1, 2, 3, 1]; + /// + /// vec.remove_item(&1); + /// + /// assert_eq!(vec, vec![2, 3, 1]); + /// ``` + #[unstable(feature = "vec_remove_item", reason = "recently added", issue = "40062")] + pub fn remove_item(&mut self, item: &T) -> Option { + let pos = match self.iter().position(|x| *x == *item) { + Some(x) => x, + None => return None, + }; + Some(self.remove(pos)) + } } ////////////////////////////////////////////////////////////////////////////////