Random

trait Random[F[_]]

Pure pseudo-random number generator based on the JVM implementation.

Companion:
object
class Object
trait Matchable
class Any

Value members

Abstract methods

def nextBoolean: F[Boolean]
def nextDouble: F[Double]
def nextFloat: F[Float]
def nextInt: F[Int]
def nextInt(n: Int): F[Int]
def nextLong: F[Long]
def nextPrintableChar: F[Char]
def nextString(length: Int): F[String]