We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d720a19 commit 60f2ba2Copy full SHA for 60f2ba2
src/libcore/slice/mod.rs
@@ -2688,7 +2688,7 @@ impl<T> [T] {
2688
/// assert!(v[..i].iter().all(|&x| x < 5));
2689
/// assert!(v[i..].iter().all(|&x| !(x < 5)));
2690
/// ```
2691
- #[unstable(feature = "partition_point", reason = "new API", issue = "99999")]
+ #[unstable(feature = "partition_point", reason = "new API", issue = "73831")]
2692
pub fn partition_point<P>(&self, mut pred: P) -> usize
2693
where
2694
P: FnMut(&T) -> bool,
0 commit comments