Skip to content

Commit 8398ab8

Browse files
committedJun 13, 2018
Auto merge of #50941 - kennytm:never-ok, r=sfackler
Replace `core::iter::AlwaysOk<T>` by `Result<T, !>` #43278 has been fixed, so we don't need this struct anymore. (Actually we don't even need `.unwrap()` thanks to `#![feature(exhaustive_patterns)]`)
2 parents b68432d + 8ae1889 commit 8398ab8

File tree

3 files changed

+4
-19
lines changed

3 files changed

+4
-19
lines changed
 

‎src/libcore/iter/iterator.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use cmp::Ordering;
1212
use ops::Try;
1313

14-
use super::{AlwaysOk, LoopState};
14+
use super::LoopState;
1515
use super::{Chain, Cycle, Cloned, Enumerate, Filter, FilterMap, Fuse};
1616
use super::{Flatten, FlatMap, flatten_compat};
1717
use super::{Inspect, Map, Peekable, Scan, Skip, SkipWhile, StepBy, Take, TakeWhile, Rev};
@@ -1614,7 +1614,7 @@ pub trait Iterator {
16141614
fn fold<B, F>(mut self, init: B, mut f: F) -> B where
16151615
Self: Sized, F: FnMut(B, Self::Item) -> B,
16161616
{
1617-
self.try_fold(init, move |acc, x| AlwaysOk(f(acc, x))).0
1617+
self.try_fold(init, move |acc, x| Ok::<B, !>(f(acc, x))).unwrap()
16181618
}
16191619

16201620
/// Tests if every element of the iterator matches a predicate.

‎src/libcore/iter/mod.rs

-15
Original file line numberDiff line numberDiff line change
@@ -354,21 +354,6 @@ mod range;
354354
mod sources;
355355
mod traits;
356356

357-
/// Transparent newtype used to implement foo methods in terms of try_foo.
358-
/// Important until #43278 is fixed; might be better as `Result<T, !>` later.
359-
struct AlwaysOk<T>(pub T);
360-
361-
impl<T> Try for AlwaysOk<T> {
362-
type Ok = T;
363-
type Error = !;
364-
#[inline]
365-
fn into_result(self) -> Result<Self::Ok, Self::Error> { Ok(self.0) }
366-
#[inline]
367-
fn from_error(v: Self::Error) -> Self { v }
368-
#[inline]
369-
fn from_ok(v: Self::Ok) -> Self { AlwaysOk(v) }
370-
}
371-
372357
/// Used to make try_fold closures more like normal loops
373358
#[derive(PartialEq)]
374359
enum LoopState<C, B> {

‎src/libcore/iter/traits.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use ops::{Mul, Add, Try};
1111
use num::Wrapping;
1212

13-
use super::{AlwaysOk, LoopState};
13+
use super::LoopState;
1414

1515
/// Conversion from an `Iterator`.
1616
///
@@ -524,7 +524,7 @@ pub trait DoubleEndedIterator: Iterator {
524524
fn rfold<B, F>(mut self, accum: B, mut f: F) -> B where
525525
Self: Sized, F: FnMut(B, Self::Item) -> B,
526526
{
527-
self.try_rfold(accum, move |acc, x| AlwaysOk(f(acc, x))).0
527+
self.try_rfold(accum, move |acc, x| Ok::<B, !>(f(acc, x))).unwrap()
528528
}
529529

530530
/// Searches for an element of an iterator from the back that satisfies a predicate.

0 commit comments

Comments
 (0)
Please sign in to comment.