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

functionalj.stream.ToIntStreamProcessor Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy