All Downloads are FREE. Search and download functionalities are using the official Maven repository.

functionalj.stream.ToLongStreamProcessor Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy