X
- Type of inputY
- Type of inputZ
- Type of outputpublic interface BiFunc<X,Y,Z>
If you don't want to have any checked exceptions being thrown
out of your BiFunc
, you can use
UncheckedBiFunc
decorator. Also
you may try IoCheckedBiFunc
.
There is no thread-safety guarantee.
Modifier and Type | Interface and Description |
---|---|
static class |
BiFunc.NoNulls<X,Y,Z>
BiFunc check for no nulls.
|
Modifier and Type | Method and Description |
---|---|
Z |
apply(X first,
Y second)
Apply it.
|
Copyright © 2017 Cactoos. All rights reserved.