All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.kosmos_lab.web.data.Tuple Maven / Gradle / Ivy

There is a newer version: 0.1.4
Show newest version
package de.kosmos_lab.web.data;

public class Tuple {
    public final X x;
    public final Y y;
    public Tuple(X x, Y y) {
        this.x = x;
        this.y = y;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy