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

ch.inftec.ju.util.function.Function Maven / Gradle / Ivy

package ch.inftec.ju.util.function;

/**
 * Will be obsolete with JDK8.
 */
public interface Function {
	/**
	 * Applies this function to the given argument.
	 *
	 * @param t the function argument
	 * @return the function result
	 */
	R apply(T t);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy