Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

slice: allow [T]::contains to accept any Q where T: Borrow<Q> #43020

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/liballoc/slice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -973,8 +973,9 @@ impl<T> [T] {
/// assert!(!v.contains(&50));
/// ```
#[stable(feature = "rust1", since = "1.0.0")]
pub fn contains(&self, x: &T) -> bool
where T: PartialEq
pub fn contains<Q: ?Sized>(&self, x: &Q) -> bool
where T: Borrow<Q>,
Q: PartialEq
{
core_slice::SliceExt::contains(self, x)
}
Expand Down
20 changes: 20 additions & 0 deletions src/liballoc/tests/slice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,26 @@ fn test_binary_search() {
assert_eq!([1, 2, 3, 4, 5].binary_search(&0).ok(), None);
}

#[test]
fn test_contains() {
assert!([5, 4, 3, 2, 1].contains(&2));
let empty: &[i32] = &[][..];
assert!(!empty.contains(&1));

// Tests that Borrow functions.
let string_slice = [String::from("abc"), String::from("def")];
assert!(string_slice.contains(&String::from("abc")));
assert!(!string_slice.contains(&String::from("ab")));
assert!(string_slice.contains("abc"));
assert!(!string_slice.contains("ab"));

let vecu8_slice = [b"abc".to_vec(), b"def".to_vec()];
assert!(vecu8_slice.contains(&b"abc".to_vec()));
assert!(!vecu8_slice.contains(&b"ab".to_vec()));
assert!(vecu8_slice.contains(&b"abc"[..]));
assert!(!vecu8_slice.contains(&b"ab"[..]));
}

#[test]
fn test_reverse() {
let mut v = vec![10, 20];
Expand Down
11 changes: 8 additions & 3 deletions src/libcore/slice/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,9 @@ pub trait SliceExt {
fn as_mut_ptr(&mut self) -> *mut Self::Item;

#[stable(feature = "core", since = "1.6.0")]
fn contains(&self, x: &Self::Item) -> bool where Self::Item: PartialEq;
fn contains<Q: ?Sized>(&self, x: &Q) -> bool
where Self::Item: Borrow<Q>,
Q: PartialEq;

#[stable(feature = "core", since = "1.6.0")]
fn starts_with(&self, needle: &[Self::Item]) -> bool where Self::Item: PartialEq;
Expand Down Expand Up @@ -616,8 +618,11 @@ impl<T> SliceExt for [T] {
}

#[inline]
fn contains(&self, x: &T) -> bool where T: PartialEq {
self.iter().any(|elt| *x == *elt)
fn contains<Q: ?Sized>(&self, x: &Q) -> bool
where T: Borrow<Q>,
Q: PartialEq
{
self.iter().any(|elt| *x == *elt.borrow())
}

#[inline]
Expand Down
2 changes: 1 addition & 1 deletion src/librustc/ty/inhabitedness/def_id_forest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ impl<'a, 'gcx, 'tcx> DefIdForest {
where I: IntoIterator<Item=DefIdForest>
{
let mut ret = DefIdForest::empty();
let mut next_ret = SmallVec::new();
let mut next_ret: SmallVec<[DefId; 1]> = SmallVec::new();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This feels like an unrelated change? Unless inference is failing, as I suspect it is, in which case I'm not sure we'd be able to land this -- too much breakage.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, inference was failing in this case.

for next_forest in iter {
for id in ret.root_ids.drain(..) {
if !next_forest.contains(tcx, id) {
Expand Down