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