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

zhao.algorithmMagic.utils.dataContainer.IntegerAndInts Maven / Gradle / Ivy

There is a newer version: 1.42
Show newest version
package zhao.algorithmMagic.utils.dataContainer;

/**
 * @author zhao
 */
public final class IntegerAndInts {
    public final int anInt;
    public final int[] ints;

    public IntegerAndInts(int anInt, int[] ints) {
        this.anInt = anInt;
        this.ints = ints;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy