19 lines
305 B
Java
19 lines
305 B
Java
|
package cc.fascinated.common;
|
||
|
|
||
|
import lombok.AllArgsConstructor;
|
||
|
import lombok.Getter;
|
||
|
|
||
|
@Getter @AllArgsConstructor
|
||
|
public class Tuple<L, R> {
|
||
|
|
||
|
/**
|
||
|
* The left value of the tuple.
|
||
|
*/
|
||
|
private final L left;
|
||
|
|
||
|
/**
|
||
|
* The right value of the tuple.
|
||
|
*/
|
||
|
private final R right;
|
||
|
}
|