Package org.dmfs.jems2
Interface Pair<Left,Right>
-
- All Known Implementing Classes:
DelegatingPair,LeftSidedPair,RightSidedPair,ValuePair
public interface Pair<Left,Right>A pair of typed values, a tuple of two (also called ordered pair).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Leftleft()The left value of the pair, i.e. the 1st value in this 2-tuple.Rightright()The right value of the pair, i.e. the 2nd value in this 2-tuple.
-