scalaprops.Arg.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalaprops-core_2.12.0-RC1 Show documentation
Show all versions of scalaprops-core_2.12.0-RC1 Show documentation
property based testing library for Scala
The newest version!
package scalaprops
sealed abstract class Arg {
type A
val value: A
val shrinks: Int
override final def toString = s"Arg(${shrinks}, ${value})"
}
object Arg {
def apply[A0](value0: A0, shrinks0: Int): Arg =
new Arg {
type A = A0
val value = value0
val shrinks = shrinks0
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy