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

cz.mmsparams.api.utils.Tuple Maven / Gradle / Ivy

The newest version!
package cz.mmsparams.api.utils;

public class Tuple
{
    public final X x;
    public final Y y;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy