slice: Add tracking issue for slice_binary_search_by_key

This commit is contained in:
Kamal Marhubi 2016-04-15 19:27:03 -04:00
parent 9debf51f4b
commit 1e7ec39fc3
2 changed files with 2 additions and 2 deletions

View File

@ -770,7 +770,7 @@ impl<T> [T] {
/// let r = s.binary_search_by_key(&1, |&(a,b)| b);
/// assert!(match r { Ok(1...4) => true, _ => false, });
/// ```
#[unstable(feature = "slice_binary_search_by_key", reason = "recently added", issue = "0")]
#[unstable(feature = "slice_binary_search_by_key", reason = "recently added", issue = "33018")]
#[inline]
pub fn binary_search_by_key<B, F>(&self, b: &B, f: F) -> Result<usize, usize>
where F: FnMut(&T) -> B,

View File

@ -158,7 +158,7 @@ pub trait SliceExt {
#[stable(feature = "copy_from_slice", since = "1.9.0")]
fn copy_from_slice(&mut self, src: &[Self::Item]) where Self::Item: Copy;
#[unstable(feature = "slice_binary_search_by_key", reason = "recently added", issue = "0")]
#[unstable(feature = "slice_binary_search_by_key", reason = "recently added", issue = "33018")]
fn binary_search_by_key<B, F>(&self, b: &B, f: F) -> Result<usize, usize>
where F: FnMut(&Self::Item) -> B,
B: Ord;