Skip to content

Commit

Permalink
Tracking issue 62544 for iter_is_partitioned
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Jul 9, 2019
1 parent 4c22e48 commit 7171c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/iter/traits/iterator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1595,7 +1595,7 @@ pub trait Iterator {
/// assert!("Iterator".chars().is_partitioned(char::is_uppercase));
/// assert!(!"IntoIterator".chars().is_partitioned(char::is_uppercase));
/// ```
#[unstable(feature = "iter_is_partitioned", reason = "new API", issue = "0")]
#[unstable(feature = "iter_is_partitioned", reason = "new API", issue = "62544")]
fn is_partitioned<P>(mut self, mut predicate: P) -> bool
where
Self: Sized,
Expand Down

0 comments on commit 7171c83

Please sign in to comment.