com.github.markozajc.ef.function.except.all.AEFunction Maven / Gradle / Ivy
package com.github.markozajc.ef.function.except.all;
import java.util.function.Function;
import com.github.markozajc.ef.function.except.EFunction;
/**
* Variant of {@link Function} capable of throwing an {@link Exception}.
*
* @author Marko Zajc
*
* @param
* the type of the input to the function
* @param
* the type of the result of the function
*/
@FunctionalInterface
public interface AEFunction extends EFunction {}