Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 81 of 81 for ImmutableEntry (0.05 sec)

  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;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Sep 11 19:35:11 UTC 2025
    - 148.9K bytes
    - Viewed (0)
Back to top