io.termd.core.function.Function Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of termd-core Show documentation
Show all versions of termd-core Show documentation
An open source terminal daemon library providing terminal handling in Java,
back ported to Alibaba by core engine team to support running on JDK 6+.
package io.termd.core.function;
/**
* @author bw on 27/10/2016.
*/
public interface Function {
R apply(T t);
}