- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for testAllMatch (0.18 sec)
-
android/guava-tests/test/com/google/common/collect/FluentIterableTest.java
assertFalse(iterable.anyMatch(predicate)); list.add("cool"); assertFalse(iterable.anyMatch(predicate)); list.add("pants"); assertTrue(iterable.anyMatch(predicate)); } public void testAllMatch() { List<String> list = new ArrayList<>(); FluentIterable<String> iterable = FluentIterable.<String>from(list); Predicate<String> predicate = equalTo("cool"); assertTrue(iterable.allMatch(predicate));
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 30.5K bytes - Viewed (0)