Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for subMultiset (0.05 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/MultisetNavigationTester.java

        testEmptyRangeSubMultiset(
            sortedMultiset.subMultiset(a.getElement(), CLOSED, a.getElement(), OPEN));
        testEmptyRangeSubMultiset(
            sortedMultiset.subMultiset(a.getElement(), OPEN, a.getElement(), OPEN));
        testEmptyRangeSubMultiset(
            sortedMultiset.subMultiset(a.getElement(), OPEN, a.getElement(), CLOSED));
        testEmptyRangeSubMultiset(
            sortedMultiset.subMultiset(b.getElement(), CLOSED, a.getElement(), CLOSED));
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 19 20:14:36 GMT 2024
    - 26K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/Multisets.java

      }
    
      /**
       * Returns {@code true} if {@code subMultiset.count(o) <= superMultiset.count(o)} for all {@code
       * o}.
       *
       * @since 10.0
       */
      @CanIgnoreReturnValue
      public static boolean containsOccurrences(Multiset<?> superMultiset, Multiset<?> subMultiset) {
        checkNotNull(superMultiset);
        checkNotNull(subMultiset);
        for (Entry<?> entry : subMultiset.entrySet()) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 41.3K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/Multisets.java

      }
    
      /**
       * Returns {@code true} if {@code subMultiset.count(o) <= superMultiset.count(o)} for all {@code
       * o}.
       *
       * @since 10.0
       */
      @CanIgnoreReturnValue
      public static boolean containsOccurrences(Multiset<?> superMultiset, Multiset<?> subMultiset) {
        checkNotNull(superMultiset);
        checkNotNull(subMultiset);
        for (Entry<?> entry : subMultiset.entrySet()) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 41.2K bytes
    - Click Count (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

       * works better than Ordering.natural().nullsFirst() because, if null comes before all other
       * values, it lies outside the submap/submultiset ranges we test, and the variety of tests that
       * exercise null handling fail on those subcollections.
       */
      public abstract static class NullsBefore implements Comparator<@Nullable String>, Serializable {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Oct 10 23:13:45 GMT 2025
    - 17.2K bytes
    - Click Count (0)
  5. guava/src/com/google/common/collect/ImmutableSortedMultiset.java

        throw new UnsupportedOperationException();
      }
    
      @Override
      public abstract ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType);
    
      @Override
      public ImmutableSortedMultiset<E> subMultiset(
          E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) {
        checkArgument(
            comparator().compare(lowerBound, upperBound) <= 0,
            "Expected lowerBound <= upperBound but %s > %s",
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 21:07:18 GMT 2025
    - 29.5K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

        throw new UnsupportedOperationException();
      }
    
      @Override
      public abstract ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType);
    
      @Override
      public ImmutableSortedMultiset<E> subMultiset(
          E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) {
        checkArgument(
            comparator().compare(lowerBound, upperBound) <= 0,
            "Expected lowerBound <= upperBound but %s > %s",
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue May 13 17:27:14 GMT 2025
    - 35.2K bytes
    - Click Count (0)
Back to Top