1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
package bjc.utils.data;
import java.util.function.BiConsumer;
import java.util.function.BiFunction;
import java.util.function.Function;
/**
* Represents a pair of values
*
* @author ben
* @param <LeftType>
* The type of the left side of the pair
* @param <RightType>
* The type of the right side of the pair
*
*/
public interface IPair<LeftType, RightType> {
/**
* Bind a function to the left value in this pair
*
* @param <BoundLeft>
* The type of the bound value
* @param leftBinder
* The function to use to bind
* @return A pair with the left type bound
*/
public <BoundLeft> IPair<BoundLeft, RightType> bindLeft(
Function<LeftType, IPair<BoundLeft, RightType>> leftBinder);
/**
* Bind a function to the right value in this pair
*
* @param <BoundRight>
* The type of the bound value
* @param rightBinder
* The function to use to bind
* @return A pair with the right type bound
*/
public <BoundRight> IPair<LeftType, BoundRight> bindRight(
Function<RightType, IPair<LeftType, BoundRight>> rightBinder);
/**
* Bind a function across the values in this pair
*
* @param <BoundLeft>
* The type of the bound left
* @param <BoundRight>
* The type of the bound right
* @param binder
* The function to bind with
* @return The bound pair
*/
public <BoundLeft, BoundRight> IPair<BoundLeft, BoundRight> bind(
BiFunction<LeftType, RightType, IPair<BoundLeft, BoundRight>> binder);
/**
* Merge the two values in this pair into a single value
*
* @param <MergedType>
* The type of the single value
* @param merger
* The function to use for merging
* @return The pair, merged into a single value
*/
public <MergedType> MergedType merge(
BiFunction<LeftType, RightType, MergedType> merger);
/**
* Get the value on the left side of the pair
*
* @return The value on the left side of the pair
*/
public default LeftType getLeft() {
return merge((leftValue, rightValue) -> leftValue);
}
/**
* Get the value on the right side of the pair
*
* @return The value on the right side of the pair
*/
public default RightType getRight() {
return merge((leftValue, rightValue) -> rightValue);
}
/**
* Immediately perfom the specified action with the contents of this pair
* @param consumer The action to perform on the pair
*/
public default void doWith(BiConsumer<LeftType, RightType> consumer) {
merge((leftValue, rightValue) -> {
consumer.accept(leftValue, rightValue);
return null;
});
}
}
|