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

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

package com.moon.core.util.function;

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

    /**
     * Applies this function to the given argument.
     *
     * @param first  the function argument
     * @param second the function argument
     * @param index  the function argument
     *
     * @return the function result
     */
    R apply(F first, S second, int index);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy