![JAR search and dependency download from the Maven repository](/logo.png)
com.ajjpj.abase.function.AFunction2NoThrow Maven / Gradle / Ivy
package com.ajjpj.abase.function;
/**
* Represents a function that takes two arguments and produces a result.
* This function does not throw an exception.
*
* @param 1st parameter type
* @param 2nd parameter type
* @param return type
*
* @author bitmagier
*/
public interface AFunction2NoThrow extends AFunction2 {
@Override R apply (P1 param1, P2 param2);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy