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