Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for elementData (0.09 sec)

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

      E elementData(int index) {
        /*
         * requireNonNull is safe as long as we're careful to call this method only with populated
         * indexes.
         */
        return (E) requireNonNull(queue[index]);
      }
    
      @Override
      public @Nullable E peek() {
        return isEmpty() ? null : elementData(0);
      }
    
      /** Returns the index of the max element. */
    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