com.github.skjolber.stcsv.column.tri.ObjDoubleTriConsumer 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.column.tri;
@FunctionalInterface
public interface ObjDoubleTriConsumer {
/**
* Performs this operation on the given arguments.
*
* @param t the first input argument
* @param intermediate intermediate helper / processor
* @param value the second input argument
*/
void accept(T t, I intermediate, double value);
}