
com.ajjpj.abase.function.AFunction1 Maven / Gradle / Ivy
package com.ajjpj.abase.function;
/**
* Represents a function that takes a single argument and produces a result.
*
* @param parameter type
* @param return type
*
* @author arno
*/
public interface AFunction1 {
R apply(P param) throws E;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy