Tracking issue 62543 for iter_partition_in_place

This commit is contained in:
Josh Stone 2019-07-09 15:17:47 -07:00
parent 265e3a6230
commit 4c22e48f6e

View File

@ -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>,