cyclops.function.checked.CheckedIntConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cyclops Show documentation
Show all versions of cyclops Show documentation
Platform for Functional Reactive Programming with Java 8
package cyclops.function.checked;
public interface CheckedIntConsumer {
public void accept(int a) throws Throwable;
}