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

io.hawt.util.Function Maven / Gradle / Ivy

package io.hawt.util;

/**
 * When we move to Java 8 we can switch this to be java.util.function.Function
 */
public interface Function {
    /**
     * Returns the result of applying this function to the parameter value
     */
    R apply(T value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy