Kactoos

kactoos-jvm / nnl.rocks.kactoos.func / UncheckedBiFunc

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.

Parameters

X - Type of input

Y - Type of input

Z - Type of output

Since 0.4

Constructors

Name Summary
<init> UncheckedBiFunc(func: BiFunc<X, Y, Z>)
BiFunc that doesn’t throw checked Exception.

Functions

Name Summary
apply fun apply(first: X, second: Y): Z
Apply it.