diff --git a/src/libstd/result.rs b/src/libstd/result.rs index 3811f34cec43c..a1980aa70e344 100644 --- a/src/libstd/result.rs +++ b/src/libstd/result.rs @@ -366,19 +366,6 @@ impl either::AsEither for Result { } } -#[inline] -#[allow(missing_doc)] -pub fn map_opt(o_t: &Option, - op: &fn(&T) -> Result) -> Result,U> { - match *o_t { - None => Ok(None), - Some(ref t) => match op(t) { - Ok(v) => Ok(Some(v)), - Err(e) => Err(e) - } - } -} - /// Takes each element in the iterator: if it is an error, no further /// elements are taken, and the error is returned. /// Should no error occur, a vector containing the values of each Result