Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for tryCrossOverAndBubbleUp (2.19 sec)

  1. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

        if (bubbledTo == vacated) {
          // Could not bubble toTrickle up min levels, try moving
          // it from min level to max level (or max to min level) and bubble up
          // there.
          return heap.tryCrossOverAndBubbleUp(index, vacated, toTrickle);
        } else {
          return (bubbledTo < index) ? new MoveDesc<E>(toTrickle, elementData(index)) : null;
        }
      }
    
      // Returned from removeAt() to iterator.remove()
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 34K bytes
    - Viewed (0)
Back to top