com.github.tommyettinger.function.ByteLongBiConsumer 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(byte, long)}.
*/
@FunctionalInterface
public interface ByteLongBiConsumer {
/**
* Performs this operation on the given arguments.
*
* @param first the first input argument
* @param second the second input argument
*/
void accept(byte first, long second);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy