Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ContiguousSetDescendingGenerator (0.22 sec)

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

    import com.google.common.collect.testing.NavigableSetTestSuiteBuilder;
    import com.google.common.collect.testing.features.CollectionSize;
    import com.google.common.collect.testing.google.SetGenerators.ContiguousSetDescendingGenerator;
    import com.google.common.collect.testing.google.SetGenerators.ContiguousSetGenerator;
    import com.google.common.collect.testing.google.SetGenerators.ContiguousSetHeadsetGenerator;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

    import com.google.common.collect.testing.NavigableSetTestSuiteBuilder;
    import com.google.common.collect.testing.features.CollectionSize;
    import com.google.common.collect.testing.google.SetGenerators.ContiguousSetDescendingGenerator;
    import com.google.common.collect.testing.google.SetGenerators.ContiguousSetGenerator;
    import com.google.common.collect.testing.google.SetGenerators.ContiguousSetHeadsetGenerator;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

          set.add(tooHigh);
          set.add(tooLow);
          return checkedCreate(set).subSet(tooLow + 1, tooHigh);
        }
      }
    
      @GwtIncompatible // NavigableSet
      public static class ContiguousSetDescendingGenerator extends AbstractContiguousSetGenerator {
        @Override
        protected SortedSet<Integer> create(Integer[] elements) {
          return checkedCreate(nullCheckedTreeSet(elements)).descendingSet();
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

          set.add(tooHigh);
          set.add(tooLow);
          return checkedCreate(set).subSet(tooLow + 1, tooHigh);
        }
      }
    
      @GwtIncompatible // NavigableSet
      public static class ContiguousSetDescendingGenerator extends AbstractContiguousSetGenerator {
        @Override
        protected SortedSet<Integer> create(Integer[] elements) {
          return checkedCreate(nullCheckedTreeSet(elements)).descendingSet();
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top