![JAR search and dependency download from the Maven repository](/logo.png)
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