functionalj.stream.LongStreamProcessor 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.theLong;
import java.util.function.ToLongFunction;
import lombok.val;
public interface LongStreamProcessor {
public TARGET process(LongStreamPlus stream);
default StreamProcessor ofLong() {
return of(theLong);
}
default