Skip to content

Commit

Permalink
Remove core::iter::MinMaxResult::* public reexport
Browse files Browse the repository at this point in the history
Part of #19253

[breaking-change]
  • Loading branch information
frewsxcv committed Jan 1, 2015
1 parent 10d99a9 commit f9ce6f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/libcore/iter.rs
Expand Up @@ -54,7 +54,7 @@
//!
//! This `for` loop syntax can be applied to any iterator over any type.

pub use self::MinMaxResult::*;
use self::MinMaxResult::*;

use clone::Clone;
use cmp;
Expand Down Expand Up @@ -1035,7 +1035,7 @@ pub trait IteratorOrdExt<A> {
/// # Example
///
/// ```rust
/// use std::iter::{NoElements, OneElement, MinMax};
/// use std::iter::MinMaxResult::{NoElements, OneElement, MinMax};
///
/// let v: [int, ..0] = [];
/// assert_eq!(v.iter().min_max(), NoElements);
Expand Down Expand Up @@ -1145,7 +1145,7 @@ impl<T: Clone> MinMaxResult<T> {
/// # Example
///
/// ```rust
/// use std::iter::{NoElements, OneElement, MinMax, MinMaxResult};
/// use std::iter::MinMaxResult::{mod, NoElements, OneElement, MinMax};
///
/// let r: MinMaxResult<int> = NoElements;
/// assert_eq!(r.into_option(), None);
Expand Down
1 change: 1 addition & 0 deletions src/libcoretest/iter.rs
Expand Up @@ -10,6 +10,7 @@

use core::iter::*;
use core::iter::order::*;
use core::iter::MinMaxResult::*;
use core::num::SignedInt;
use core::uint;
use core::cmp;
Expand Down

0 comments on commit f9ce6f5

Please sign in to comment.