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

com.github.skjolber.stcsv.databinder.column.tri.TriConsumer Maven / Gradle / Ivy

There is a newer version: 1.0.25
Show newest version
package com.github.skjolber.stcsv.databinder.column.tri;

@FunctionalInterface
public interface TriConsumer {

    /**
     * Performs this operation on the given arguments.
     *
     * @param s the first function argument
     * @param t the second function argument
     * @param u the third function argument
     */
    void accept(S s, T t, U u);
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy