T - type of arg1U - type of arg2R - type of return value.@FunctionalInterface public interface BiFunctionRaisingIOE<T,U,R>
| Modifier and Type | Method and Description |
|---|---|
R |
apply(T t,
U u)
Apply the function.
|
default R |
unchecked(T t,
U u)
Apply unchecked.
|
R apply(T t, U u) throws IOException
t - argument 1u - argument 2IOException - Any IO failuredefault R unchecked(T t, U u)
t - argumentu - argument 2UncheckedIOException - IOE raised.Copyright © 2008–2025 Apache Software Foundation. All rights reserved.