Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testSkip_structurallyModifiedSkipAll (0.19 sec)

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

        list.subList(1, 3).clear();
        list.addAll(0, Lists.newArrayList("X", "Y", "Z"));
        assertThat(tail).containsExactly("Y", "Z", "a").inOrder();
      }
    
      public void testSkip_structurallyModifiedSkipAll() throws Exception {
        Collection<String> set = Sets.newLinkedHashSet();
        Collections.addAll(set, "a", "b", "c");
        FluentIterable<String> tail = FluentIterable.from(set).skip(2);
        set.remove("a");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/IterablesTest.java

        list.subList(1, 3).clear();
        list.addAll(0, newArrayList("A", "B", "C"));
        assertThat(tail).containsExactly("B", "C", "a").inOrder();
      }
    
      public void testSkip_structurallyModifiedSkipAll() throws Exception {
        Collection<String> set = newLinkedHashSet(asList("a", "b", "c"));
        Iterable<String> tail = skip(set, 2);
        set.remove("a");
        set.remove("b");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 19:12:33 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top