Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for keyPredicateOnEntries (0.14 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

        }
    
        @Override
        NavigableMap<K, V1> fromMap() {
          return (NavigableMap<K, V1>) super.fromMap();
        }
      }
    
      static <K extends @Nullable Object> Predicate<Entry<K, ?>> keyPredicateOnEntries(
          Predicate<? super K> keyPredicate) {
        return compose(keyPredicate, Entry::getKey);
      }
    
      static <V extends @Nullable Object> Predicate<Entry<?, V>> valuePredicateOnEntries(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 157.6K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        NavigableMap<K, V1> fromMap() {
          return (NavigableMap<K, V1>) super.fromMap();
        }
      }
    
      static <K extends @Nullable Object> Predicate<Entry<K, ?>> keyPredicateOnEntries(
          Predicate<? super K> keyPredicate) {
        return compose(keyPredicate, Entry::getKey);
      }
    
      static <V extends @Nullable Object> Predicate<Entry<?, V>> valuePredicateOnEntries(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 163.4K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/StandardTable.java

            return StandardTable.this.remove(obj, columnKey) != null;
          }
    
          @Override
          public boolean retainAll(Collection<?> c) {
            return removeFromColumnIf(Maps.keyPredicateOnEntries(not(in(c))));
          }
        }
    
        @Override
        Collection<V> createValues() {
          return new Values();
        }
    
        @WeakOuter
        private final class Values extends Maps.Values<R, V> {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 30.4K bytes
    - Click Count (0)
Back to Top