fj.function.Try3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functionaljava Show documentation
Show all versions of functionaljava Show documentation
Functional Java is an open source library that supports closures for the Java programming language
package fj.function;
/**
* A transformation function of arity-3 from A
, B
and C
to D
that may throw an Exception
.
*
* Used to instantiate a lambda that may throw an Exception
before converting to an F3
.
*
* @see fj.Try#f(Try3)
* @version %build.number%
*/
public interface Try3 {
D f(A a, B b, C c) throws Z;
}