Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for headMultiset (0.06 sec)

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

        expectAddFailure(sortedMultiset.headMultiset(b.getElement(), OPEN), b);
        expectAddFailure(sortedMultiset.headMultiset(a.getElement(), CLOSED), c);
        expectAddFailure(sortedMultiset.headMultiset(a.getElement(), CLOSED), b);
        expectAddFailure(sortedMultiset.headMultiset(a.getElement(), OPEN), c);
        expectAddFailure(sortedMultiset.headMultiset(a.getElement(), OPEN), b);
        expectAddFailure(sortedMultiset.headMultiset(a.getElement(), OPEN), a);
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java

        expectAddFailure(sortedMultiset.headMultiset(b.getElement(), OPEN), b);
        expectAddFailure(sortedMultiset.headMultiset(a.getElement(), CLOSED), c);
        expectAddFailure(sortedMultiset.headMultiset(a.getElement(), CLOSED), b);
        expectAddFailure(sortedMultiset.headMultiset(a.getElement(), OPEN), c);
        expectAddFailure(sortedMultiset.headMultiset(a.getElement(), OPEN), b);
        expectAddFailure(sortedMultiset.headMultiset(a.getElement(), OPEN), a);
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/UnmodifiableSortedMultiset.java

      @CheckForNull
      public Entry<E> pollLastEntry() {
        throw new UnsupportedOperationException();
      }
    
      @Override
      public SortedMultiset<E> headMultiset(@ParametricNullness E upperBound, BoundType boundType) {
        return Multisets.unmodifiableSortedMultiset(delegate().headMultiset(upperBound, boundType));
      }
    
      @Override
      public SortedMultiset<E> subMultiset(
          @ParametricNullness E lowerBound,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

                    }
    
                    if (to == Bound.INCLUSIVE) {
                      multiset = multiset.headMultiset(lastInclusive, BoundType.CLOSED);
                    } else if (to == Bound.EXCLUSIVE) {
                      multiset = multiset.headMultiset(lastExclusive, BoundType.OPEN);
                    }
    
                    return multiset;
                  }
                })
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top