com.ajjpj.abase.function.AFunction1 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
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;
}