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