Skip to content

Commit

Permalink
Tracking issue 62543 for iter_partition_in_place
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Jul 9, 2019
1 parent 265e3a6 commit 4c22e48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/iter/traits/iterator.rs
Expand Up @@ -1536,7 +1536,7 @@ pub trait Iterator {
/// assert!(a[..i].iter().all(|&n| n % 2 == 0)); // evens
/// assert!(a[i..].iter().all(|&n| n % 2 == 1)); // odds
/// ```
#[unstable(feature = "iter_partition_in_place", reason = "new API", issue = "0")]
#[unstable(feature = "iter_partition_in_place", reason = "new API", issue = "62543")]
fn partition_in_place<'a, T: 'a, P>(mut self, ref mut predicate: P) -> usize
where
Self: Sized + DoubleEndedIterator<Item = &'a mut T>,
Expand Down

0 comments on commit 4c22e48

Please sign in to comment.