com.annimon.stream.function.BiConsumer 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
* @param the type of the second argument
* @see Consumer
*/
@FunctionalInterface
public interface BiConsumer {
/**
* Performs operation on two arguments.
*
* @param value1 the first argument
* @param value2 the second argument
*/
void accept(T value1, U value2);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy