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

Fix Spliterator implementations for sorted collections #6188

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

kilink
Copy link

@kilink kilink commented Sep 28, 2022

Spliterators returned by CollectSpliterators.indexed and ImmutableSortedSet.spliterator violated the Spliterator API by not returning null in getComparator when the source items are naturally sorted. The effect was that sort operations on Streams backed by these Spliterators were not optimized away, resulting in additional unnecessary sorting.

Fixes #6187.

@@ -96,7 +96,7 @@ public int characteristics() {
@CheckForNull
public Comparator<? super T> getComparator() {
if (hasCharacteristics(Spliterator.SORTED)) {
return comparator;
return Ordering.natural().equals(comparator) ? null : comparator;
Copy link
Contributor

Choose a reason for hiding this comment

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

We should special-case Comparator.naturalOrder() too.

Copy link
Author

Choose a reason for hiding this comment

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

Okay I've updated it to handle Comparator.naturalOrder() as well.

Spliterators returned by CollectSpliterators.indexed and ImmutableSortedSet.spliterator
violated the Spliterator API by not returning null in getComparator when the source
items are naturally sorted. The effect was that sort operations on Streams backed by
these Spliterators were not optimized away, resulting in additional unnecessary sorting.

Fixes google#6187.
@kilink kilink force-pushed the sorted-collection-spliterator-fix branch from aae7c24 to 8f754ff Compare October 18, 2022 21:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Spliterators for sorted collections cause inefficient stream operations when natural ordering is used
3 participants