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

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

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

import com.belteshazzar.jquery.functions.IntObjectObjectFunction;

public class IntObjectObjectFunctionCaller {

	private IntObjectObjectFunction function;

	public IntObjectObjectFunctionCaller(IntObjectObjectFunction function) {
		this.function = function;
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy