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

Commits on Oct 18, 2022

  1. Fix Spliterator implementations for sorted collections

    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 committed Oct 18, 2022
    Configuration menu
    Copy the full SHA
    8f754ff View commit details
    Browse the repository at this point in the history