From: VillSnow Date: Sun, 28 Jun 2020 08:39:03 +0000 (+0900) Subject: Update tracking issue number X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=60f2ba24031b52d3363e180dd7ad1c07608c6917;p=rust.git Update tracking issue number --- diff --git a/src/libcore/slice/mod.rs b/src/libcore/slice/mod.rs index 11561c39286..07b45640a52 100644 --- a/src/libcore/slice/mod.rs +++ b/src/libcore/slice/mod.rs @@ -2688,7 +2688,7 @@ pub fn is_sorted_by_key(&self, f: F) -> bool /// assert!(v[..i].iter().all(|&x| x < 5)); /// assert!(v[i..].iter().all(|&x| !(x < 5))); /// ``` - #[unstable(feature = "partition_point", reason = "new API", issue = "99999")] + #[unstable(feature = "partition_point", reason = "new API", issue = "73831")] pub fn partition_point

(&self, mut pred: P) -> usize where P: FnMut(&T) -> bool,