Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ceilingKey (0.26 sec)

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

      }
    
      @Override
      @CheckForNull
      public K ceilingKey(@ParametricNullness K key) {
        return delegate().ceilingKey(key);
      }
    
      /**
       * A sensible definition of {@link #ceilingKey} in terms of {@code ceilingEntry}. If you override
       * {@code ceilingEntry}, you may wish to override {@code ceilingKey} to forward to this
       * implementation.
       */
      @CheckForNull
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Jun 15 18:11:44 GMT 2023
    - 14.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

      }
    
      @Override
      @CheckForNull
      public K ceilingKey(@ParametricNullness K key) {
        return delegate().ceilingKey(key);
      }
    
      /**
       * A sensible definition of {@link #ceilingKey} in terms of {@code ceilingEntry}. If you override
       * {@code ceilingEntry}, you may wish to override {@code ceilingKey} to forward to this
       * implementation.
       */
      @CheckForNull
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Jun 15 18:11:44 GMT 2023
    - 14.3K bytes
    - Viewed (0)
Back to top