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

java.util.function.BiConsumer Maven / Gradle / Ivy

package java.util.function;

@FunctionalInterface
public interface BiConsumer {
	void accept(T t, U u);

	//default native BiConsumer andThen(BiConsumer after);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy