All Downloads are FREE. Search and download functionalities are using the official Maven repository.

delight.functional.Function Maven / Gradle / Ivy

The newest version!
package delight.functional;

/**
 * 

A function with a generic input and output. * @author Max Rohde * @param * The input type for this function. * @param * The output type for this function. * @see Function (Wikipedia) */ @SuppressWarnings("all") public interface Function { /** * This method applies the function to a specified input and calculates the output. * @param input The input for the function. * @return The output of the function. */ public abstract Output apply(final Input input); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy