object TestArrow
Type Members
- case class And[A](left: TestArrow[A, Boolean], right: TestArrow[A, Boolean]) extends TestArrow[A, Boolean] with Product with Serializable
- case class AndThen[A, B, C](f: TestArrow[A, B], g: TestArrow[B, C]) extends TestArrow[A, C] with Product with Serializable
- sealed case class Meta[-A, +B](arrow: TestArrow[A, B], span: Option[Span], parentSpan: Option[Span], code: Option[String], location: Option[String], completeCode: Option[String], customLabel: Option[String], genFailureDetails: Option[GenFailureDetails]) extends TestArrow[A, B] with Product with Serializable
- case class Not[A](arrow: TestArrow[A, Boolean]) extends TestArrow[A, Boolean] with Product with Serializable
- case class Or[A](left: TestArrow[A, Boolean], right: TestArrow[A, Boolean]) extends TestArrow[A, Boolean] with Product with Serializable
- case class Span(start: Int, end: Int) extends Product with Serializable
- case class Suspend[A, B](f: (A) => TestArrow[Any, B]) extends TestArrow[A, B] with Product with Serializable
- case class TestArrowF[-A, +B](f: (Either[Throwable, A]) => TestTrace[B]) extends TestArrow[A, B] with Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- final def ##: Int
- final def ==(arg0: Any): Boolean
- final def asInstanceOf[T0]: T0
- def clone(): AnyRef
- final def eq(arg0: AnyRef): Boolean
- def equals(arg0: AnyRef): Boolean
- def fromFunction[A, B](f: (A) => B): TestArrow[A, B]
- final def getClass(): Class[_ <: AnyRef]
- def hashCode(): Int
- final def isInstanceOf[T0]: Boolean
- def make[A, B](f: (A) => TestTrace[B]): TestArrow[A, B]
- def makeEither[A, B](onFail: (Throwable) => TestTrace[B], onSucceed: (A) => TestTrace[B]): TestArrow[A, B]
- final def ne(arg0: AnyRef): Boolean
- final def notify(): Unit
- final def notifyAll(): Unit
- def run[A, B](arrow: TestArrow[A, B], in: Either[Throwable, A]): TestTrace[B]
- def succeed[A](value: => A): TestArrow[Any, A]
- def suspend[A, B](f: (A) => TestArrow[Any, B]): TestArrow[A, B]
- final def synchronized[T0](arg0: => T0): T0
- def toString(): String
- final def wait(): Unit
- final def wait(arg0: Long, arg1: Int): Unit
- final def wait(arg0: Long): Unit
Deprecated Value Members
- def finalize(): Unit