com.github.tommyettinger.function.LongObjBiConsumer Maven / Gradle / Ivy
package com.github.tommyettinger.function;
/**
* Represents an operation that accepts
* two input arguments and returns no result.
*
* This is a functional interface
* whose functional method is {@link #accept(long, Object)}.
*/
@FunctionalInterface
public interface LongObjBiConsumer {
/**
* Performs this operation on the given arguments.
*
* @param first the first input argument
* @param second the second input argument
*/
void accept(long first, T second);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy