Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 81 of 81 for ImmutableEntry (0.22 seconds)

  1. guava/src/com/google/common/cache/LocalCache.java

        }
    
        @Override
        public boolean removeIf(Predicate<? super Entry<K, V>> filter) {
          checkNotNull(filter);
          return LocalCache.this.removeIf((k, v) -> filter.test(Maps.immutableEntry(k, v)));
        }
    
        @Override
        public boolean contains(Object o) {
          if (!(o instanceof Entry)) {
            return false;
          }
          Entry<?, ?> e = (Entry<?, ?>) o;
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Sep 11 19:35:11 GMT 2025
    - 148.9K bytes
    - Click Count (0)
Back to Top