Skip to content

Commit 4c22e48

Browse files
committed
Tracking issue 62543 for iter_partition_in_place
1 parent 265e3a6 commit 4c22e48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/iter/traits/iterator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1536,7 +1536,7 @@ pub trait Iterator {
15361536
/// assert!(a[..i].iter().all(|&n| n % 2 == 0)); // evens
15371537
/// assert!(a[i..].iter().all(|&n| n % 2 == 1)); // odds
15381538
/// ```
1539-
#[unstable(feature = "iter_partition_in_place", reason = "new API", issue = "0")]
1539+
#[unstable(feature = "iter_partition_in_place", reason = "new API", issue = "62543")]
15401540
fn partition_in_place<'a, T: 'a, P>(mut self, ref mut predicate: P) -> usize
15411541
where
15421542
Self: Sized + DoubleEndedIterator<Item = &'a mut T>,

0 commit comments

Comments
 (0)