Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 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)
  2. android/guava/src/com/google/common/collect/Streams.java

          return fromSpliterator.characteristics()
              & (Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED);
        }
      }
    
      /**
       * An analogue of {@link java.util.function.IntFunction} also accepting an index.
       *
       * <p>This interface is only intended for use by callers of {@link #mapWithIndex(IntStream,
       * IntFunctionWithIndex)}.
       *
       * @since 33.4.0 (but since 21.0 in the JRE flavor)
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 36.8K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/Streams.java

          return fromSpliterator.characteristics()
              & (Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED);
        }
      }
    
      /**
       * An analogue of {@link java.util.function.IntFunction} also accepting an index.
       *
       * <p>This interface is only intended for use by callers of {@link #mapWithIndex(IntStream,
       * IntFunctionWithIndex)}.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 36.4K bytes
    - Click Count (0)
Back to Top