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

functionalj.stream.IntAccumulator Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
package functionalj.stream;

import java.util.function.BiConsumer;

@FunctionalInterface
public interface IntAccumulator extends BiConsumer {
    
    void acceptInt(ACCUMULATED accumulator, int element);
    
    default void accept(ACCUMULATED accumulator, Integer element) {
        acceptInt(accumulator, element.intValue());
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy