functionalj.stream.DoubleStreamProcessor 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.theDouble;
import java.util.function.ToDoubleFunction;
import lombok.val;
public interface DoubleStreamProcessor {
public TARGET process(DoubleStreamPlus stream);
default StreamProcessor ofDouble() {
return of(theDouble);
}
default