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

ags.utils.dataStructures.Pair Maven / Gradle / Ivy

package ags.utils.dataStructures;

/**
 *
 */
public final class Pair {
    public final T first, second;

    public Pair(T first, T second) {
        this.first = first;
        this.second = second;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy