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

xxl.mathematica.single.RandomSingle Maven / Gradle / Ivy

package xxl.mathematica.single;

import java.util.Random;

public class RandomSingle {

    public static Random instance() {
        return Holder.random;
    }

    private static class Holder {
        private static Random random = new Random();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy