Skip to content

Commit 5c9cd82

Browse files
authored
Rollup merge of #71899 - cuviper:try_find_map, r=dtolnay
Refactor `try_find` a little ~~This works like `find_map`, but mapping to a `Try` type. It stops when `Ok` is `Some(value)`, with an additional short-circuit on `Try::Error`. This is similar to the unstable `try_find`, but has the advantage of being able to directly return the user's `R: Try` type directly, rather than converting to `Result`.~~ (removed -- `try_find_map` was declined in review) This PR also refactors `try_find` a little to match style. The `E` type parameter was unnecessary, so it's now removed. The folding closure now has reduced parametricity on just `T = Self::Item`, rather than the whole `Self` iterator type. There's otherwise no functional change in this.
2 parents 203305d + db0d70e commit 5c9cd82

File tree

1 file changed

+18
-11
lines changed

1 file changed

+18
-11
lines changed

src/libcore/iter/traits/iterator.rs

+18-11
Original file line numberDiff line numberDiff line change
@@ -2265,7 +2265,7 @@ pub trait Iterator {
22652265
}
22662266

22672267
/// Applies function to the elements of iterator and returns
2268-
/// the first non-none result or the first error.
2268+
/// the first true result or the first error.
22692269
///
22702270
/// # Examples
22712271
///
@@ -2286,19 +2286,26 @@ pub trait Iterator {
22862286
/// ```
22872287
#[inline]
22882288
#[unstable(feature = "try_find", reason = "new API", issue = "63178")]
2289-
fn try_find<F, E, R>(&mut self, mut f: F) -> Result<Option<Self::Item>, E>
2289+
fn try_find<F, R>(&mut self, f: F) -> Result<Option<Self::Item>, R::Error>
22902290
where
22912291
Self: Sized,
22922292
F: FnMut(&Self::Item) -> R,
2293-
R: Try<Ok = bool, Error = E>,
2294-
{
2295-
self.try_fold((), move |(), x| match f(&x).into_result() {
2296-
Ok(false) => LoopState::Continue(()),
2297-
Ok(true) => LoopState::Break(Ok(x)),
2298-
Err(x) => LoopState::Break(Err(x)),
2299-
})
2300-
.break_value()
2301-
.transpose()
2293+
R: Try<Ok = bool>,
2294+
{
2295+
#[inline]
2296+
fn check<F, T, R>(mut f: F) -> impl FnMut((), T) -> LoopState<(), Result<T, R::Error>>
2297+
where
2298+
F: FnMut(&T) -> R,
2299+
R: Try<Ok = bool>,
2300+
{
2301+
move |(), x| match f(&x).into_result() {
2302+
Ok(false) => LoopState::Continue(()),
2303+
Ok(true) => LoopState::Break(Ok(x)),
2304+
Err(x) => LoopState::Break(Err(x)),
2305+
}
2306+
}
2307+
2308+
self.try_fold((), check(f)).break_value().transpose()
23022309
}
23032310

23042311
/// Searches for an element in an iterator, returning its index.

0 commit comments

Comments
 (0)