Formatting

This commit is contained in:
Liam Newman
2021-02-26 12:00:40 -08:00
parent 772a6c112b
commit 936ab499ce
3 changed files with 27 additions and 2 deletions

View File

@@ -6,6 +6,8 @@ import java.io.InputStream;
/**
* A functional interface, equivalent to {@link java.util.function.Function} but that allows throwing {@link Throwable}
*
* @param <R>
* the type to of object to be returned
*/
@FunctionalInterface
public interface InputStreamFunction<R> extends FunctionThrows<InputStream, R, IOException> {