Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for standardFirstKey (0.34 sec)

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

       * {@code firstEntry}, you may wish to override {@code firstKey} to forward to this
       * implementation.
       */
      protected K standardFirstKey() {
        Entry<K, V> entry = firstEntry();
        if (entry == null) {
          throw new NoSuchElementException();
        } else {
          return entry.getKey();
        }
      }
    
      @Override
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ForwardingNavigableMap.java

       * {@code firstEntry}, you may wish to override {@code firstKey} to forward to this
       * implementation.
       */
      protected K standardFirstKey() {
        Entry<K, V> entry = firstEntry();
        if (entry == null) {
          throw new NoSuchElementException();
        } else {
          return entry.getKey();
        }
      }
    
      @Override
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top