All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ajjpj.abase.function.AFunction2 Maven / Gradle / Ivy

Go to download

a-base is a library of basic (hence the name) classes, most notably immutable collection classes with copy-on-write operations

There is a newer version: 1.0-pre11
Show newest version
package com.ajjpj.abase.function;

/**
 * Represents a function that takes two arguments and produces a result.
 *
 * @param  1st parameter type
 * @param  2nd parameter type
 * @param  return type
 *
 * @author bitmagier
 */
public interface AFunction2 {
    R apply (P1 param1, P2 param2) throws E;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy