2024-04-13 20:53:31 +01:00
|
|
|
package xyz.mcutils.backend.common;
|
2024-04-10 07:43:38 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|