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

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

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

/**
 * @author zhao
 */
public final class IntegerAndDoubles {
    public final int anInt;
    public final double[] doubles;

    public IntegerAndDoubles(int anInt, double[] doubles) {
        this.anInt = anInt;
        this.doubles = doubles;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy