org.davidmoten.kool.function.BiConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kool Show documentation
Show all versions of kool Show documentation
Streaming library supporting reuse and many operators
package org.davidmoten.kool.function;
@FunctionalInterface
public interface BiConsumer {
void accept(T t, R r) throws Exception;
}