Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testSkip_structurallyModifiedSkipAll (0.18 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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 = new LinkedHashSet<>();
        Collections.addAll(set, "a", "b", "c");
        FluentIterable<String> tail = FluentIterable.from(set).skip(2);
        set.remove("a");
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 31.2K bytes
    - Click Count (0)
  2. 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 = new LinkedHashSet<>(asList("a", "b", "c"));
        Iterable<String> tail = skip(set, 2);
        set.remove("a");
        set.remove("b");
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 47.5K bytes
    - Click Count (0)
Back to Top