com.annimon.stream.function.ObjIntConsumer Maven / Gradle / Ivy
The newest version!
package com.annimon.stream.function;
/**
* Represents an operation on two input arguments.
*
* @param the type of the first argument
* @see BiConsumer
*/
@FunctionalInterface
public interface ObjIntConsumer {
/**
* Performs operation on two arguments.
*
* @param t the first argument
* @param value the second argument
*/
void accept(T t, int value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy