view src/main/java/fj/function/Try5.java @ 0:fe80c1edf1be

add getLoop
author tatsuki
date Fri, 20 Mar 2015 21:04:03 +0900
parents
children
line wrap: on
line source

package fj.function;

/**
 * A transformation function of arity-5 from <code>A</code>, <code>B</code>, <code>C</code>, <code>D</code> and <code>E</code> to <code>F</code> that may throw an <code>Exception</code>.
 *
 * Used to instantiate a lambda that may throw an <code>Exception</code> before converting to an <code>F5</code>.
 *
 * @see fj.Try#f
 * @version %build.number%
 */

public interface Try5<A, B, C, D, E, F, Z extends Exception> {

    F f(A a, B b, C c, D d, E e) throws Z;

}