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

utils.PairBuilder Maven / Gradle / Ivy

The newest version!
package utils;

public class PairBuilder {

    public static final  Pair makePair(T t, U u){
        Pair p = new Pair();
        p.first = t;
        p.second =u;
        return p;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy