All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.tommyettinger.function.IntByteBiConsumer 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(int, byte)}. */ @FunctionalInterface public interface IntByteBiConsumer { /** * Performs this operation on the given arguments. * * @param first the first input argument * @param second the second input argument */ void accept(int first, byte second); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy