X
- Type of inputY
- Type of inputpublic interface BiProc<X,Y>
If you don't want to have any checked exceptions being thrown
out of your BiProc
, you can use
UncheckedBiProc
decorator. Also
you may try IoCheckedBiProc
.
There is no thread-safety guarantee.
Modifier and Type | Interface and Description |
---|---|
static class |
BiProc.NoNulls<X,Y>
BiProc check for no nulls.
|
Modifier and Type | Method and Description |
---|---|
void |
exec(X first,
Y second)
Execute it.
|
Copyright © 2017–2019 Cactoos. All rights reserved.