stabilize partition_point

This commit is contained in:
VillSnow 2021-01-14 23:36:33 +09:00
parent de21cdf792
commit afdc8c7918
2 changed files with 1 additions and 4 deletions

View File

@ -3425,8 +3425,6 @@ pub fn is_sorted_by_key<F, K>(&self, f: F) -> bool
/// # Examples
///
/// ```
/// #![feature(partition_point)]
///
/// let v = [1, 2, 3, 3, 5, 6, 7];
/// let i = v.partition_point(|&x| x < 5);
///
@ -3434,7 +3432,7 @@ pub fn is_sorted_by_key<F, K>(&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 = "73831")]
#[stable(feature = "partition_point", since = "1.52.0")]
pub fn partition_point<P>(&self, mut pred: P) -> usize
where
P: FnMut(&T) -> bool,

View File

@ -67,7 +67,6 @@
#![feature(option_result_unwrap_unchecked)]
#![feature(option_unwrap_none)]
#![feature(peekable_peek_mut)]
#![feature(partition_point)]
#![feature(once_cell)]
#![feature(unsafe_block_in_unsafe_fn)]
#![feature(int_bits_const)]