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