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

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

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

import com.belteshazzar.jquery.functions.IntStringIntFunction;

public class IntStringIntFunctionCaller {

	private IntStringIntFunction function;

	public IntStringIntFunctionCaller(IntStringIntFunction function) {
		this.function = function;
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy