Uses of Interface
org.tquadrat.foundation.function.tce.TCETriFunction
Packages that use TCETriFunction
Package
Description
Functional interfaces for the Foundation Library.
TCE versions of the
functional interfaces
in the package
java.util.function
and others.-
Uses of TCETriFunction in org.tquadrat.foundation.function
Methods in org.tquadrat.foundation.function with parameters of type TCETriFunctionModifier and TypeMethodDescriptionstatic final <T1,
T2, T3, R>
TriFunction<T1, T2, T3, R> Functions.wrapTriFunction
(TCETriFunction<? super T1, ? super T2, ? super T3, ? extends R> function) Wraps an instance ofTCETriFunction
to an instance ofTriFunction
that throws an instance ofLambdaContainerException
with the causing exception, in case the wrapped instance emitted a checked exception. -
Uses of TCETriFunction in org.tquadrat.foundation.function.tce
Methods in org.tquadrat.foundation.function.tce that return TCETriFunctionModifier and TypeMethodDescriptiondefault <R1> TCETriFunction
<A, B, C, R1> TCETriFunction.andThen
(TCEFunction<? super R, ? extends R1> after) Returns a composed function that first applies this function to its input, and then applies the after function to the result.