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