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