io.github.vmzakharov.ecdataframe.dataframe.DfCellComparator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dataframe-ec Show documentation
Show all versions of dataframe-ec Show documentation
A tabular data structure based on the Eclipse Collections framework
The newest version!
package io.github.vmzakharov.ecdataframe.dataframe;
import io.github.vmzakharov.ecdataframe.dataframe.compare.ComparisonResult;
public interface DfCellComparator
{
ComparisonResult compare(int thisRowIndex, int otherRowIndex);
}