kactoos-jvm / nnl.rocks.kactoos / BiProc
interface BiProc<in X :
Any
, in Y :
Any
>
Proc that accepts two arguments.
Since 0.2
Name | Summary |
---|---|
exec | abstract fun exec(first: X , second: Y ): Unit Execute it. |
Name | Summary |
---|---|
BiProcOf | class BiProcOf<in X : Any , in Y : Any > : BiProc < X , Y > Func as BiProc. |
CheckedBiProc | class CheckedBiProc<X : Any , Y : Any , E> : BiProc < X , Y > BiProc that throws exception of specified type. |
IoCheckedBiProc | class IoCheckedBiProc<in X : Any , in Y : Any > : BiProc < X , Y > BiProc that doesn’t throw checked Exception, but throws IOException instead. |
UncheckedBiProc | class UncheckedBiProc<in X : Any , in Y : Any > : BiProc < X , Y > BiProc that doesn’t throw checked Exception. |