Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ByFunctionOrdering (0.31 sec)

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

       * (you can omit the comparator if it is the natural order).
       */
      public <F extends @Nullable Object> Ordering<F> onResultOf(Function<F, ? extends T> function) {
        return new ByFunctionOrdering<>(function, this);
      }
    
      <T2 extends T> Ordering<Entry<T2, ?>> onKeys() {
        return onResultOf(Entry::getKey);
      }
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 23 17:50:58 UTC 2025
    - 39.5K bytes
    - Viewed (0)
Back to top