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

com.github.microwww.ttp.util.BiConsumer Maven / Gradle / Ivy

There is a newer version: 0.0.6-release
Show newest version
package com.github.microwww.ttp.util;

public interface BiConsumer {
    /**
     * Performs this operation on the given arguments.
     *
     * @param t the first input argument
     * @param u the second input argument
     */
    void accept(T t, U u);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy