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

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

package com.moon.core.util.function;

/**
 * @author moonsky
 */
@FunctionalInterface
public interface IntBiFunction {
    /**
     * Applies this function to the given arguments.
     *
     * @param value
     * @param obj
     * @return
     */
    R apply(int value, T obj);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy