java.lang.Object
io.github.lijinhong11.mittellib.utils.random.FastRandom

public final class FastRandom extends Object
A fast random number generator based on SplitMix64
  • 构造器详细资料

    • FastRandom

      public FastRandom()
  • 方法详细资料

    • nextInt

      public static int nextInt()
    • nextInt

      public static int nextInt(int bound)
    • nextInt

      public static int nextInt(int origin, int bound)
    • nextLong

      public static long nextLong()
    • nextLong

      public static long nextLong(long bound)
    • nextLong

      public static long nextLong(long origin, long bound)
    • nextDouble

      public static double nextDouble()
    • nextDouble

      public static double nextDouble(double bound)
    • nextDouble

      public static double nextDouble(double origin, double bound)