functionalj.stream.IntStreamProcessor 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 static functionalj.lens.Access.theInteger;
import java.util.function.ToIntFunction;
import lombok.val;
public interface IntStreamProcessor {
public TARGET process(IntStreamPlus stream);
default StreamProcessor ofInteger() {
return of(theInteger);
}
default