Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Heap (0.01 sec)

  1. guava/src/com/google/common/collect/Iterators.java

        final Queue<IndexedIterator<T>> queue;
    
        MergingIterator(
            Iterable<? extends Iterator<? extends T>> iterators, Comparator<? super T> itemComparator) {
          // A comparator that's used by the heap, allowing the heap
          // to be sorted based on the top of each iterator, with insertion order as tiebreaker
          Comparator<IndexedIterator<T>> heapComparator =
              (o1, o2) ->
                  ComparisonChain.start()
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 16 12:42:11 UTC 2025
    - 51.4K bytes
    - Viewed (0)
Back to top