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

com.belteshazzar.jquery.functions.callers.IntIntIntFunctionCaller Maven / Gradle / Ivy

The newest version!
package com.belteshazzar.jquery.functions.callers;

import com.belteshazzar.jquery.functions.IntIntIntFunction;

public class IntIntIntFunctionCaller {

	private IntIntIntFunction function;

	public IntIntIntFunctionCaller(IntIntIntFunction function) {
		this.function = function;
	}

	public int call(int i, int j) {
		return function.apply(i,j);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy