functionalj.stream.ToLongStreamProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functionalj-core Show documentation
Show all versions of functionalj-core Show documentation
The module for FunctionalJ Core.
package functionalj.stream;
import functionalj.lens.lenses.LongAccess;
@FunctionalInterface
public interface ToLongStreamProcessor extends StreamProcessor, LongAccess> {
@Override
public default Long applyUnsafe(StreamPlus input) throws Exception {
return process(input);
}
}