Uses of Interface
zone.lamprey.function.TriFunction
| Package | Description |
|---|---|
| zone.lamprey.function |
Functional interfaces provide target types for lambda expressions
and method references.
|
-
Uses of TriFunction in zone.lamprey.function
Subinterfaces of TriFunction in zone.lamprey.function Modifier and Type Interface Description interfaceTernaryOperator<T>Represents an operation upon three operands of the same type, producing a result of the same type as the operands.Methods in zone.lamprey.function with type parameters of type TriFunction Modifier and Type Method Description default <T, U, V, R, F extends TriFunction<T, U, V, R>>
FRunnable. andThen(F after)LikeRunnable.andThen(Runnable), but creates a TriFunction.Methods in zone.lamprey.function that return TriFunction Modifier and Type Method Description default <S> TriFunction<T,U,V,S>TriFunction. map(Function<? super R,? extends S> functor)Lift a function.