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

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

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

import com.belteshazzar.jquery.functions.IntIntStringFunction;

public class IntIntStringFunctionCaller {

	private IntIntStringFunction function;

	public IntIntStringFunctionCaller(IntIntStringFunction function) {
		this.function = function;
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy