Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BelowAll (0.15 sec)

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

        return create(Cut.<C>belowAll(), Cut.belowValue(endpoint));
      }
    
      /**
       * Returns a range that contains all values less than or equal to {@code endpoint}.
       *
       * @since 14.0
       */
      public static <C extends Comparable<?>> Range<C> atMost(C endpoint) {
        return create(Cut.<C>belowAll(), Cut.aboveValue(endpoint));
      }
    
      /**
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 27.8K bytes
    - Viewed (0)
Back to top