Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AboveValue (1.14 sec)

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

        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      static <C extends Comparable> Cut<C> aboveValue(C endpoint) {
        return new AboveValue<>(endpoint);
      }
    
      private static final class AboveValue<C extends Comparable> extends Cut<C> {
        AboveValue(C endpoint) {
          super(checkNotNull(endpoint));
        }
    
        @Override
        boolean isLessThan(C value) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 12.4K bytes
    - Viewed (0)
Back to top