- Sort Score
- Result 10 results
- Languages All
Results 11 - 14 of 14 for filterValues (0.06 sec)
-
guava/src/com/google/common/collect/Maps.java
* Predicates.instanceOf(ArrayList.class)}, which is inconsistent with equals. */ public static <K extends @Nullable Object, V extends @Nullable Object> Map<K, V> filterValues( Map<K, V> unfiltered, Predicate<? super V> valuePredicate) { return filterEntries(unfiltered, valuePredicateOnEntries(valuePredicate)); } /**
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 17 22:50:48 UTC 2025 - 163.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/IterablesTest.java
} })); assertEquals(newArrayList("a", "c", "e"), list); } // The Maps returned by Maps.filterEntries(), Maps.filterKeys(), and // Maps.filterValues() are not tested with removeIf() since Maps are not // Iterable. Those returned by Iterators.filter() and Iterables.filter() // are not tested because they are unmodifiable.Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 18:44:53 UTC 2025 - 45.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Multimaps.java
* Predicates.instanceOf(ArrayList.class)}, which is inconsistent with equals. * * @since 11.0 */ public static <K extends @Nullable Object, V extends @Nullable Object> Multimap<K, V> filterValues(Multimap<K, V> unfiltered, Predicate<? super V> valuePredicate) { return filterEntries(unfiltered, Maps.valuePredicateOnEntries(valuePredicate)); } /**
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 18:35:44 UTC 2025 - 86.5K bytes - Viewed (0) -
internal/event/errors.go
return "more than one suffix in filter rule" } // ErrInvalidFilterValue - invalid filter value error. type ErrInvalidFilterValue struct { FilterValue string } func (err ErrInvalidFilterValue) Error() string { return fmt.Sprintf("invalid filter value '%v'", err.FilterValue) } // ErrDuplicateEventName - duplicate event name error. type ErrDuplicateEventName struct { EventName Name }
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 4.1K bytes - Viewed (0)