functionalj.stream.ToIntStreamProcessor 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.IntegerAccess;
@FunctionalInterface
public interface ToIntStreamProcessor extends StreamProcessor, IntegerAccess> {
@Override
public default Integer applyUnsafe(StreamPlus input) throws Exception {
return process(input);
}
}