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

io.github.andyalvarez.primitive.function.IntIntBiConsumer Maven / Gradle / Ivy

The newest version!
package io.github.andyalvarez.primitive.function;

import java.util.function.BiConsumer;

/**
 * Represents an operation that accepts an object-valued and a
 * {@code int}-valued argument, and returns no result.  This is the
 * {@code (reference, int)} specialization of {@link BiConsumer}.
 * Unlike most other functional interfaces, {@code ObjIntConsumer} is
 * expected to operate via side-effects.
 *
 * 

This is a functional interface * whose functional method is {@link #accept(int, int)}. * * @see BiConsumer * @since 1.8 */ @FunctionalInterface public interface IntIntBiConsumer { /** * Performs this operation on the given arguments. * * @param value the first input argument * @param t the second input argument */ void accept(int value, int t); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy