Uses of Interface
zone.lamprey.function.IntFunction
| Package | Description |
|---|---|
| zone.lamprey.function |
Functional interfaces provide target types for lambda expressions
and method references.
|
-
Uses of IntFunction in zone.lamprey.function
Subinterfaces of IntFunction in zone.lamprey.function Modifier and Type Interface Description interfaceIntPredicateRepresents a predicate (boolean-valued function) of oneint-valued argument.interfaceIntToDoubleFunctionRepresents a function that accepts an int-valued argument and produces a double-valued result.interfaceIntToLongFunctionRepresents a function that accepts an int-valued argument and produces a long-valued result.interfaceIntUnaryOperatorRepresents an operation on a singleint-valued operand that produces anint-valued result.Fields in zone.lamprey.function declared as IntFunction Modifier and Type Field Description static IntFunction<String>IntFunction. TO_STRINGFunctional interface toString.valueOf(int)Methods in zone.lamprey.function that return IntFunction Modifier and Type Method Description default <S> IntFunction<S>IntFunction. map(Function<? super R,? extends S> functor)Lift a function.default <S> IntFunction<S>IntUnaryOperator. mapToObj(IntFunction<? extends S> functor)Lift a function.Methods in zone.lamprey.function with parameters of type IntFunction Modifier and Type Method Description default <R> Supplier<R>IntSupplier. mapToObj(IntFunction<R> functor)Lift a supplier.default <S> IntFunction<S>IntUnaryOperator. mapToObj(IntFunction<? extends S> functor)Lift a function.default <S> BiFunction<T,U,S>ToIntBiFunction. mapToObj(IntFunction<? extends S> functor)Lift a function.default <S> Function<T,S>ToIntFunction. mapToObj(IntFunction<? extends S> functor)Lift a function.