com.github.jnthnclt.os.lab.collections.KeyValueStream Maven / Gradle / Ivy
package com.github.jnthnclt.os.lab.collections;
/**
*
* @author jonathan.colt
*/
public interface KeyValueStream {
boolean keyValue(K key, V value) throws Exception;
}