Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for withLowerBoundType (0.08 seconds)

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

  1. guava/src/com/google/common/collect/RegularContiguousSet.java

        return range(CLOSED, CLOSED);
      }
    
      @Override
      public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) {
        return Range.create(
            range.lowerBound.withLowerBoundType(lowerBoundType, domain),
            range.upperBound.withUpperBoundType(upperBoundType, domain));
      }
    
      @Override
      public boolean equals(@Nullable Object object) {
        if (object == this) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 8.3K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/RegularContiguousSet.java

        return range(CLOSED, CLOSED);
      }
    
      @Override
      public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) {
        return Range.create(
            range.lowerBound.withLowerBoundType(lowerBoundType, domain),
            range.upperBound.withUpperBoundType(upperBoundType, domain));
      }
    
      @Override
      public boolean equals(@Nullable Object object) {
        if (object == this) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 8.3K bytes
    - Click Count (0)
Back to Top