Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AboveAll (0.05 sec)

  1. android/guava/src/com/google/common/collect/Cut.java

       */
      @SuppressWarnings("unchecked")
      static <C extends Comparable> Cut<C> aboveAll() {
        return (Cut<C>) AboveAll.INSTANCE;
      }
    
      private static final class AboveAll extends Cut<Comparable<?>> {
        private static final AboveAll INSTANCE = new AboveAll();
    
        private AboveAll() {
          // For discussion of "", see BelowAll.
          super("");
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TreeRangeSet.java

                nextComplementRangeLowerBound = positiveRange.upperBound;
              } else {
                negativeRange = Range.create(nextComplementRangeLowerBound, Cut.aboveAll());
                nextComplementRangeLowerBound = Cut.aboveAll();
              }
              return immutableEntry(negativeRange.lowerBound, negativeRange);
            }
          };
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 32.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

          } else {
            lowerBound = ranges.get(index).upperBound;
          }
    
          Cut<C> upperBound;
          if (positiveBoundedAbove && index == size - 1) {
            upperBound = Cut.aboveAll();
          } else {
            upperBound = ranges.get(index + (positiveBoundedBelow ? 0 : 1)).lowerBound;
          }
    
          return Range.create(lowerBound, upperBound);
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 27.4K bytes
    - Viewed (0)
Back to top