From 807725b995a14c0aac5926c77636d3998b82dc9d Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Fri, 20 Sep 2013 00:59:02 -0400 Subject: [PATCH] util: remove unused `with` function --- src/libstd/util.rs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/libstd/util.rs b/src/libstd/util.rs index e8bcceb85fa..7a79ec96304 100644 --- a/src/libstd/util.rs +++ b/src/libstd/util.rs @@ -23,25 +23,6 @@ pub fn id(x: T) -> T { x } #[inline] pub fn ignore(_x: T) { } -/// Sets `*ptr` to `new_value`, invokes `op()`, and then restores the -/// original value of `*ptr`. -/// -/// NB: This function accepts `@mut T` and not `&mut T` to avoid -/// an obvious borrowck hazard. Typically passing in `&mut T` will -/// cause borrow check errors because it freezes whatever location -/// that `&mut T` is stored in (either statically or dynamically). -#[inline] -pub fn with( - ptr: @mut T, - value: T, - op: &fn() -> R) -> R -{ - let prev = replace(ptr, value); - let result = op(); - *ptr = prev; - return result; -} - /** * Swap the values at two mutable locations of the same type, without * deinitialising or copying either one.