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

co.unruly.control.Pair Maven / Gradle / Ivy

package co.unruly.control;

/**
 * Created by tom on 13/01/2017.
 */
public class Pair {

    public final L left;
    public final R right;

    public Pair(L left, R right) {
        this.left = left;
        this.right = right;
    }
}




© 2015 - 2026 Weber Informatics LLC | Privacy Policy