Uses of Interface
zone.lamprey.function.ToLongFunction
| Package | Description |
|---|---|
| zone.lamprey.function |
Functional interfaces provide target types for lambda expressions
and method references.
|
-
Uses of ToLongFunction in zone.lamprey.function
Subinterfaces of ToLongFunction in zone.lamprey.function Modifier and Type Interface Description interfaceDoubleToLongFunctionRepresents a function that accepts a double-valued argument and produces a long-valued result.interfaceIntToLongFunctionRepresents a function that accepts an int-valued argument and produces a long-valued result.interfaceLongUnaryOperatorRepresents an operation on a singlelong-valued operand that produces along-valued result.Methods in zone.lamprey.function that return ToLongFunction Modifier and Type Method Description default ToLongFunction<U>ToLongBiFunction. applyPartialL(T t)Performs a partial application, resulting in a function that calls this with its argument and the argument given here.default ToLongFunction<T>ToLongBiFunction. applyPartialR(U u)Performs a partial application, resulting in a function that calls this with its argument and the argument given here.default ToLongFunction<T>ToLongFunction. map(LongUnaryOperator functor)Lift a function.default ToLongFunction<T>Function. mapToLong(ToLongFunction<? super R> functor)Lift a function.default ToLongFunction<T>ToDoubleFunction. mapToLong(DoubleToLongFunction functor)Lift a function.default ToLongFunction<T>ToIntFunction. mapToLong(IntToLongFunction functor)Lift a function.Methods in zone.lamprey.function with parameters of type ToLongFunction Modifier and Type Method Description default ToLongBiFunction<T,U>BiFunction. mapToLong(ToLongFunction<? super R> functor)Lift a function.default DoubleToLongFunctionDoubleFunction. mapToLong(ToLongFunction<? super R> functor)Lift a function.default ToLongFunction<T>Function. mapToLong(ToLongFunction<? super R> functor)Lift a function.default IntToLongFunctionIntFunction. mapToLong(ToLongFunction<? super R> functor)Lift a function.default LongUnaryOperatorLongFunction. mapToLong(ToLongFunction<? super R> functor)Lift a function.default LongSupplierSupplier. mapToLong(ToLongFunction<T> functor)Lift a supplier.