io.github.cshencode.function.Function1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shen-tool Show documentation
Show all versions of shen-tool Show documentation
工具类-简化steam操作
通过简单的方式完成流 分组、循环
package io.github.cshencode.function;
import java.io.Serializable;
@FunctionalInterface
public interface Function1 extends Serializable {
R apply(T t);
}