|
ScalaCheck 1.2
|
|
org/scalacheck/Util.scala]
object
Util
extends AnyRef| Method Summary | |
def
|
secure [T](x : => T) : Either[T, java.lang.Throwable] |
| Methods inherited from AnyRef | |
| getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Class Summary | |
sealed trait
|
Either
[+T, +U] extends AnyRef
|
case class
|
Left
[+T, +U](val x : T) extends Either[T, U] with scala.Product
|
case class
|
Right
[+T, +U](val x : U) extends Either[T, U] with scala.Product
|
| Method Details |
|
ScalaCheck 1.2
|
|