about summary refs log tree commit diff
path: root/src/libstd/mutable.rs
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2013-11-16 11:19:25 -0800
committerSteven Fackler <sfackler@gmail.com>2013-11-22 21:19:53 -0800
commit8a26266f6586f765ebdfbc0304e4976bfff28895 (patch)
tree191599686d5d655cb895d422d17045fe56451b62 /src/libstd/mutable.rs
parentbb39cc3ae6db7effb17902d0cff0a737aef15101 (diff)
downloadrust-8a26266f6586f765ebdfbc0304e4976bfff28895.tar.gz
rust-8a26266f6586f765ebdfbc0304e4976bfff28895.zip
Change Mut::map to Mut::with
Diffstat (limited to 'src/libstd/mutable.rs')
-rw-r--r--src/libstd/mutable.rs24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/libstd/mutable.rs b/src/libstd/mutable.rs
index c343e8734cb..98177b3cdf5 100644
--- a/src/libstd/mutable.rs
+++ b/src/libstd/mutable.rs
@@ -118,7 +118,7 @@ impl<T> Mut<T> {
     ///
     /// Fails if the value is currently mutably borrowed.
     #[inline]
-    pub fn map<U>(&self, blk: |&T| -> U) -> U {
+    pub fn with<U>(&self, blk: |&T| -> U) -> U {
         let ptr = self.borrow();
         blk(ptr.get())
     }
@@ -129,7 +129,7 @@ impl<T> Mut<T> {
     ///
     /// Fails if the value is currently borrowed.
     #[inline]
-    pub fn map_mut<U>(&self, blk: |&mut T| -> U) -> U {
+    pub fn with_mut<U>(&self, blk: |&mut T| -> U) -> U {
         let mut ptr = self.borrow_mut();
         blk(ptr.get())
     }
@@ -260,39 +260,39 @@ mod test {
     }
 
     #[test]
-    fn map_ok() {
+    fn with_ok() {
         let x = Mut::new(0);
-        assert_eq!(1, x.map(|x| *x+1));
+        assert_eq!(1, x.with(|x| *x+1));
     }
 
     #[test]
     #[should_fail]
-    fn mut_borrow_map() {
+    fn mut_borrow_with() {
         let x = Mut::new(0);
         let _b1 = x.borrow_mut();
-        x.map(|x| *x+1);
+        x.with(|x| *x+1);
     }
 
     #[test]
-    fn borrow_map() {
+    fn borrow_with() {
         let x = Mut::new(0);
         let _b1 = x.borrow();
-        assert_eq!(1, x.map(|x| *x+1));
+        assert_eq!(1, x.with(|x| *x+1));
     }
 
     #[test]
-    fn map_mut_ok() {
+    fn with_mut_ok() {
         let x = Mut::new(0);
-        x.map_mut(|x| *x += 1);
+        x.with_mut(|x| *x += 1);
         let b = x.borrow();
         assert_eq!(1, *b.get());
     }
 
     #[test]
     #[should_fail]
-    fn borrow_map_mut() {
+    fn borrow_with_mut() {
         let x = Mut::new(0);
         let _b = x.borrow();
-        x.map_mut(|x| *x += 1);
+        x.with_mut(|x| *x += 1);
     }
 }