com.firefly.utils.function.Func1 Maven / Gradle / Ivy
package com.firefly.utils.function;
/**
* Represents a function with one argument.
*/
public interface Func1 extends Function {
R call(T t);
}
package com.firefly.utils.function;
/**
* Represents a function with one argument.
*/
public interface Func1 extends Function {
R call(T t);
}