com.ajjpj.abase.function.AFunction2NoThrow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of a-base Show documentation
Show all versions of a-base Show documentation
a-base is a library of basic (hence the name) classes, most notably immutable collection classes with copy-on-write operations
The newest version!
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);
}