
fj.function.Try2 Maven / Gradle / Ivy
package fj.function;
/**
* A transformation function of arity-2 from A
and B
to C
that may throw an Exception
.
*
* Used to instantiate a lambda that may throw an Exception
before converting to an F2
.
*
* @see fj.Try#f(Try2)
* @version %build.number%
*/
public interface Try2 {
C f(A a, B b) throws Z;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy