scalaprops.Platform.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalaprops-gen_2.11 Show documentation
Show all versions of scalaprops-gen_2.11 Show documentation
pure functional random value generator
package scalaprops
private[scalaprops] object Platform {
def minSuccessful = 100
def randFromLong(seed: Long) = MersenneTwister32.standard(seed)
def randFromInt(seed: Int) = MersenneTwister32.standard(seed)
def genSize = 100
def className[A](clazz: Class[A]) = clazz.getCanonicalName
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy