io.github.cwdesautels.function.CheckedFunction Maven / Gradle / Ivy
package io.github.cwdesautels.function;
@FunctionalInterface
public interface CheckedFunction {
O apply(I input) throws Exception;
}
package io.github.cwdesautels.function;
@FunctionalInterface
public interface CheckedFunction {
O apply(I input) throws Exception;
}