com.github.ltsopensource.kv.Cursor Maven / Gradle / Ivy
package com.github.ltsopensource.kv;
/**
* @author Robert HG ([email protected]) on 12/19/15.
*/
public interface Cursor {
boolean hasNext();
V next();
}
package com.github.ltsopensource.kv;
/**
* @author Robert HG ([email protected]) on 12/19/15.
*/
public interface Cursor {
boolean hasNext();
V next();
}