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