Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testAnyMatch (0.04 sec)

  1. android/guava-tests/test/com/google/common/collect/FluentIterableTest.java

            FluentIterable.from(asList(new TypeA(), new TypeA(), hasBoth, new TypeA()));
        Iterable<TypeB> blist = alist.filter(TypeB.class);
        assertThat(blist).containsExactly(hasBoth).inOrder();
      }
    
      public void testAnyMatch() {
        ArrayList<String> list = new ArrayList<>();
        FluentIterable<String> iterable = FluentIterable.<String>from(list);
        Predicate<String> predicate = equalTo("pants");
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 30.5K bytes
    - Viewed (0)
Back to top