package function; import stream.MyStream; /** * @Author xiongyx * @Date 2019/3/6 */ @FunctionalInterface public interface EvalFunction { /** * stream流的强制求值方法 * @return 求值返回一个新的stream * */ MyStream apply(); }