Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for ImmutableListMiddleSubListGenerator (0.17 seconds)

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

  1. guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java

          arraycopy(prefix, 0, all, 0, 2);
          arraycopy(elements, 0, all, 2, elements.length);
          return ImmutableList.copyOf(all).subList(2, elements.length + 2);
        }
      }
    
      public static class ImmutableListMiddleSubListGenerator extends TestStringListGenerator {
        @Override
        protected List<String> create(String[] elements) {
          String[] prefix = {"f", "g"};
          String[] suffix = {"h", "i"};
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 20:54:16 GMT 2025
    - 5K bytes
    - Click Count (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java

          arraycopy(prefix, 0, all, 0, 2);
          arraycopy(elements, 0, all, 2, elements.length);
          return ImmutableList.copyOf(all).subList(2, elements.length + 2);
        }
      }
    
      public static class ImmutableListMiddleSubListGenerator extends TestStringListGenerator {
        @Override
        protected List<String> create(String[] elements) {
          String[] prefix = {"f", "g"};
          String[] suffix = {"h", "i"};
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 20:54:16 GMT 2025
    - 5K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/collect/ImmutableListTest.java

    import com.google.common.collect.testing.google.ListGenerators.ImmutableListHeadSubListGenerator;
    import com.google.common.collect.testing.google.ListGenerators.ImmutableListMiddleSubListGenerator;
    import com.google.common.collect.testing.google.ListGenerators.ImmutableListOfGenerator;
    import com.google.common.collect.testing.google.ListGenerators.ImmutableListTailSubListGenerator;
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 23.6K bytes
    - Click Count (0)
Back to Top