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

com.github.myibu.algorithm.random.Random Maven / Gradle / Ivy

package com.github.myibu.algorithm.random;
/**
 * random interface
 * @author myibu
 * Created on 2021/9/17
 */
public interface Random {
    void nextBytes(byte[] bytes);
    int nextInt();
    int nextInt(int bound);
    long nextLong();
    boolean nextBoolean();
    float nextFloat();
    double nextDouble();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy