
delight.functional.Closure2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of delight-functional Show documentation
Show all versions of delight-functional Show documentation
Utilities for functional-style Java applications.
The newest version!
package delight.functional;
/**
* A closure which takes in two generic arguments.
* @author Max
* @param
* Type of the first argument.
* @param
* Type of the second argument.
*/
@SuppressWarnings("all")
public interface Closure2 {
/**
* The main method of this closure.
* @param p1 First parameter to be passed.
* @param p2 Second parameter to be passed.
*/
public abstract void apply(final P1 p1, final P2 p2);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy