Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Predicates (0.04 sec)

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

          SortedMap<K, V> filterFiltered(
              FilteredEntrySortedMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) {
        Predicate<Entry<K, V>> predicate = Predicates.and(map.predicate, entryPredicate);
        return new FilteredEntrySortedMap<>(map.sortedMap(), predicate);
      }
    
      /**
       * Support {@code clear()}, {@code removeAll()}, and {@code retainAll()} when filtering a filtered
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 163.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

          SortedMap<K, V> filterFiltered(
              FilteredEntrySortedMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) {
        Predicate<Entry<K, V>> predicate = Predicates.and(map.predicate, entryPredicate);
        return new FilteredEntrySortedMap<>(map.sortedMap(), predicate);
      }
    
      /**
       * Support {@code clear()}, {@code removeAll()}, and {@code retainAll()} when filtering a filtered
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 23 17:50:58 UTC 2025
    - 157.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

    import java.util.concurrent.locks.ReentrantLock;
    import java.util.function.BiFunction;
    import java.util.function.BiPredicate;
    import java.util.function.Function;
    import java.util.function.Predicate;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import org.jspecify.annotations.NullUnmarked;
    import org.jspecify.annotations.Nullable;
    
    /**
    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