scalacheck

object Util

[source: scalacheck/Util.scala]

object Util
extends AnyRef
Method Summary
def secure [T](x : => T) : Either[T, 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 Product
case class Right [+T, +U](val x : U) extends Either[T, U] with Product
Method Details
def secure[T](x : => T) : Either[T, Throwable]