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

com.bluecatcode.common.functions.CheckedBiFunction Maven / Gradle / Ivy

package com.bluecatcode.common.functions;

import javax.annotation.Nullable;

/**
 * Determines an output value based on an input values.
 *
 * @since 1.0.5
 */
public interface CheckedBiFunction {

    /**
     * Returns the result of applying this function to {@code first} and {@code second}.
     *
     * @throws NullPointerException if {@code first} or {@code second} is null
     *                              and this function does not accept null arguments
     * @throws E if unable to compute
     */
    @Nullable
    T apply(@Nullable A first, @Nullable B second) throws E;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy