kactoos-jvm / nnl.rocks.kactoos.func / UncheckedBiFunc
class UncheckedBiFunc<in X :
Any
, in Y :
Any
, out Z :
Any
> :
BiFunc
<
X
,
Y
,
Z
>
BiFunc that doesn’t throw checked Exception.
There is no thread-safety guarantee.
X
- Type of input
Y
- Type of input
Z
- Type of output
Since 0.4
Name | Summary |
---|---|
<init> | UncheckedBiFunc(func: BiFunc < X , Y , Z >) BiFunc that doesn’t throw checked Exception. |
Name | Summary |
---|---|
apply | fun apply(first: X , second: Y ): Z Apply it. |