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

com.ajjpj.afoundation.function.AFunction3NoThrow Maven / Gradle / Ivy

The newest version!
package com.ajjpj.afoundation.function;

/**
 * Represents a function that takes three arguments and produces a result.
 * This function does not throw an exception.
 *
 * @param  1st parameter type
 * @param  2nd parameter type
 * @param  3rd parameter type
 * @param  return type
 *
 * @author arno
 */
public interface AFunction3NoThrow extends AFunction3 {
    @Override R apply (P1 param1, P2 param2, P3 param3);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy