Uses of Interface
zone.lamprey.function.LongFunction
| Package | Description |
|---|---|
| zone.lamprey.function |
Functional interfaces provide target types for lambda expressions
and method references.
|
-
Uses of LongFunction in zone.lamprey.function
Subinterfaces of LongFunction in zone.lamprey.function Modifier and Type Interface Description interfaceLongPredicateRepresents a predicate (boolean-valued function) of onelong-valued argument.interfaceLongToDoubleFunctionRepresents a function that accepts a long-valued argument and produces a double-valued result.interfaceLongToIntFunctionRepresents a function that accepts a long-valued argument and produces an int-valued result.interfaceLongUnaryOperatorRepresents an operation on a singlelong-valued operand that produces along-valued result.Fields in zone.lamprey.function declared as LongFunction Modifier and Type Field Description static LongFunction<String>LongFunction. TO_STRINGFunctional interface toString.valueOf(long)Methods in zone.lamprey.function that return LongFunction Modifier and Type Method Description default <S> LongFunction<S>LongFunction. map(Function<? super R,? extends S> functor)Lift a function.default <S> LongFunction<S>LongUnaryOperator. mapToObj(LongFunction<? extends S> functor)Lift a function.Methods in zone.lamprey.function with parameters of type LongFunction Modifier and Type Method Description default <R> Supplier<R>LongSupplier. mapToObj(LongFunction<R> functor)Lift a supplier.default <S> LongFunction<S>LongUnaryOperator. mapToObj(LongFunction<? extends S> functor)Lift a function.default <S> BiFunction<T,U,S>ToLongBiFunction. mapToObj(LongFunction<? extends S> functor)Lift a function.default <S> Function<T,S>ToLongFunction. mapToObj(LongFunction<? extends S> functor)Lift a function.