public final class DiffMap<Left,Right,Result> extends java.lang.Object implements Function<Pair<? extends Optional<? extends Left>,? extends Optional<? extends Right>>,Result>
| Constructor and Description |
|---|
DiffMap(BiFunction<? super Left,? super Right,? extends Result> leftRightFunction,
Function<? super Left,? extends Result> leftFunction,
Function<? super Right,? extends Result> rightFunction) |
| Modifier and Type | Method and Description |
|---|---|
Result |
value(Pair<? extends Optional<? extends Left>,? extends Optional<? extends Right>> pair)
Returns the value of this function at the given argument.
|