Uses of Interface
zone.lamprey.function.ToIntFunction
| Package | Description |
|---|---|
| zone.lamprey.function |
Functional interfaces provide target types for lambda expressions
and method references.
|
-
Uses of ToIntFunction in zone.lamprey.function
Subinterfaces of ToIntFunction in zone.lamprey.function Modifier and Type Interface Description interfaceDoubleToIntFunctionRepresents a function that accepts a double-valued argument and produces an int-valued result.interfaceIntUnaryOperatorRepresents an operation on a singleint-valued operand that produces anint-valued result.interfaceLongToIntFunctionRepresents a function that accepts a long-valued argument and produces an int-valued result.Fields in zone.lamprey.function declared as ToIntFunction Modifier and Type Field Description static ToIntFunction<?>ToIntFunction. HASH_CODEFunctional interface toObjects.hashCode(java.lang.Object)Methods in zone.lamprey.function that return ToIntFunction Modifier and Type Method Description default ToIntFunction<U>ToIntBiFunction. applyPartialL(T t)Performs a partial application, resulting in a function that calls this with its argument and the argument given here.default ToIntFunction<T>ToIntBiFunction. applyPartialR(U u)Performs a partial application, resulting in a function that calls this with its argument and the argument given here.default ToIntFunction<T>ToIntFunction. map(IntUnaryOperator functor)Lift a function.default ToIntFunction<T>Function. mapToInt(ToIntFunction<? super R> functor)Lift a function.default ToIntFunction<T>ToDoubleFunction. mapToInt(DoubleToIntFunction functor)Lift a function.default ToIntFunction<T>ToLongFunction. mapToInt(LongToIntFunction functor)Lift a function.Methods in zone.lamprey.function with parameters of type ToIntFunction Modifier and Type Method Description default ToIntBiFunction<T,U>BiFunction. mapToInt(ToIntFunction<? super R> functor)Lift a function.default DoubleToIntFunctionDoubleFunction. mapToInt(ToIntFunction<? super R> functor)Lift a function.default ToIntFunction<T>Function. mapToInt(ToIntFunction<? super R> functor)Lift a function.default IntUnaryOperatorIntFunction. mapToInt(ToIntFunction<? super R> functor)Lift a function.default LongToIntFunctionLongFunction. mapToInt(ToIntFunction<? super R> functor)Lift a function.default IntSupplierSupplier. mapToInt(ToIntFunction<T> functor)Lift a supplier.