view src/main/java/fj/function/Try0.java @ 4:19c719aba746 default tip

change getLoop return value
author tatsuki
date Mon, 20 Apr 2015 08:09:22 +0900
parents fe80c1edf1be
children
line wrap: on
line source

package fj.function;

/**
 * A product of <code>A</code> which may throw an <code>Exception</code>.
 *
 * Used to instantiate a lambda that may throw an <code>Exception</code> before converting to a <code>P1</code>.
 *
 * @see fj.Try#f
 * @version %build.number%
 */

public interface Try0<A, Z extends Exception> {

    A f() throws Z;

}