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

improve worst-case performance of BTreeSet intersection v1 #58577

Closed
wants to merge 17 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
remove the #[stable] thingy
  • Loading branch information
ssomers committed Feb 19, 2019
commit fab1fa925320f785324e4be94a724dd8f2dec3b6
1 change: 0 additions & 1 deletion src/liballoc/collections/btree/set.rs
Original file line number Diff line number Diff line change
@@ -155,7 +155,6 @@ impl<T: fmt::Debug> fmt::Debug for SymmetricDifference<'_, T> {
}
}

#[stable(feature = "rust1", since = "1.0.0")]
#[derive(Debug)]
enum IntersectionOther<'a, T> {
ITER(Peekable<Iter<'a, T>>),
Centril marked this conversation as resolved.
Show resolved Hide resolved