Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MoveDesc (0.2 sec)

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

        } else {
          return (bubbledTo < index) ? new MoveDesc<E>(toTrickle, elementData(index)) : null;
        }
      }
    
      // Returned from removeAt() to iterator.remove()
      static class MoveDesc<E> {
        final E toTrickle;
        final E replaced;
    
        MoveDesc(E toTrickle, E replaced) {
          this.toTrickle = toTrickle;
          this.replaced = replaced;
        }
      }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 34K bytes
    - Viewed (0)
Back to top