Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for removeAndGet (0.04 sec)

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

        return isEmpty() ? null : removeAndGet(getMaxElementIndex());
      }
    
      /**
       * Removes and returns the greatest element of this queue.
       *
       * @throws NoSuchElementException if the queue is empty
       */
      @CanIgnoreReturnValue
      public E removeLast() {
        if (isEmpty()) {
          throw new NoSuchElementException();
        }
        return removeAndGet(getMaxElementIndex());
      }
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 33.9K bytes
    - Viewed (0)
Back to top