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

com.moon.core.util.function.BiIntFunction Maven / Gradle / Ivy

package com.moon.core.util.function;

/**
 * @author moonsky
 */
@FunctionalInterface
public interface BiIntFunction {

    /**
     * Applies this function to the given arguments.
     *
     * @param obj   the function argument
     * @param value the function argument
     *
     * @return result
     */
    R apply(T obj, int value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy