Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for valuePredicateOnEntries (0.23 sec)

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

            @Override
            public boolean removeAll(Collection<?> c) {
              return removeEntriesIf(Maps.<Collection<V>>valuePredicateOnEntries(in(c)));
            }
    
            @Override
            public boolean retainAll(Collection<?> c) {
              return removeEntriesIf(Maps.<Collection<V>>valuePredicateOnEntries(not(in(c))));
            }
          }
          return new ValuesImpl();
        }
      }
    
      @Override
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/StandardTable.java

          }
    
          @Override
          public boolean removeAll(final Collection<?> c) {
            return removeFromColumnIf(Maps.<V>valuePredicateOnEntries(in(c)));
          }
    
          @Override
          public boolean retainAll(final Collection<?> c) {
            return removeFromColumnIf(Maps.<V>valuePredicateOnEntries(not(in(c))));
          }
        }
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 29.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

          Predicate<? super K> keyPredicate) {
        return compose(keyPredicate, Maps.<K>keyFunction());
      }
    
      static <V extends @Nullable Object> Predicate<Entry<?, V>> valuePredicateOnEntries(
          Predicate<? super V> valuePredicate) {
        return compose(valuePredicate, Maps.<V>valueFunction());
      }
    
      /**
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multimaps.java

          Multimap<K, V> filterValues(
              Multimap<K, V> unfiltered, final Predicate<? super V> valuePredicate) {
        return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
      }
    
      /**
       * Returns a multimap containing the mappings in {@code unfiltered} whose values satisfy a
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K bytes
    - Viewed (0)
Back to top