Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for IntFunction (0.04 seconds)

  1. guava-tests/test/com/google/common/collect/ForwardingMapTest.java

          return (Predicate<Object>) v -> (boolean) getDefaultValue(TypeToken.of(boolean.class));
        } else if (rawType.equals(IntFunction.class)) {
          try {
            Method method = IntFunction.class.getMethod("apply", int.class);
            return (IntFunction<Object>) v -> getDefaultValue(type.method(method).getReturnType());
          } catch (NoSuchMethodException e) {
            throw newLinkageError(e);
          }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 12.4K bytes
    - Click Count (0)
Back to Top