Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testSkip_structurallyModifiedSkipSomeList (0.22 sec)

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

        set.remove("b");
        set.addAll(Lists.newArrayList("X", "Y", "Z"));
        assertThat(tail).containsExactly("c", "X", "Y", "Z").inOrder();
      }
    
      public void testSkip_structurallyModifiedSkipSomeList() throws Exception {
        List<String> list = Lists.newArrayList("a", "b", "c");
        FluentIterable<String> tail = FluentIterable.from(list).skip(1);
        list.subList(1, 3).clear();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 06 18:35:19 GMT 2024
    - 31.1K bytes
    - Viewed (0)
Back to top