convex.etch.IEtchIndexVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convex-core Show documentation
Show all versions of convex-core Show documentation
Convex core libraries and common utilities
The newest version!
package convex.etch;
import java.io.IOException;
/**
* Visitor for Etch index
*/
public interface IEtchIndexVisitor {
public void visit(Etch e, int level, int[] digits, long indexPointer) throws IOException;
}