com.github.skjolber.stcsv.databinder.column.tri.TriConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databinder Show documentation
Show all versions of databinder Show documentation
High-performance CSV databinding library
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);
}