object Checked extends Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Checked
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Abort[+A, +N](abort: A, nonaborts: Chain[N]) extends Checked[A, N, Nothing] with Product with Serializable
  2. final case class Result[+N, +R](nonaborts: Chain[N], result: R) extends Checked[Nothing, N, R] with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def abort[A, N, R](abort: A): Checked[A, N, R]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. implicit def cantonUtilMonadErrorForChecked[A, N]: MonadError[[γ$0$]Checked[A, N, γ$0$], A]
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. def cond[A, R](test: Boolean, right: => R, left: => A): Checked[A, Nothing, R]

    Treat test failure as abort

  9. def continue[A, N](nonabort: N): Checked[A, N, Unit]
  10. def continueWithResult[A, N, R](nonabort: N, result: R): Checked[A, N, R]
  11. def continues[A, N](nonaborts: NonEmptyChain[N]): Checked[A, N, Unit]
  12. def continuesWithResult[A, N, R](nonaborts: NonEmptyChain[N], result: R): Checked[A, N, R]
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. def fromEither[A, R](either: Either[A, R]): Checked[A, Nothing, R]

    Treat scala.Left$ as abort

  16. def fromEitherNonabort[N, R](default: => R)(either: Either[N, R]): Checked[Nothing, N, R]

    Treat scala.Left$ as non-abort with default as the result

  17. def fromEitherNonaborts[N, R](default: => R)(either: Either[NonEmptyChain[N], R]): Checked[Nothing, N, R]

    Treat scala.Left$ as a chain of non-aborts with default as the result

  18. def fromEitherT[F[_], A, R](eitherT: EitherT[F, A, R])(implicit F: Functor[F]): F[Checked[A, Nothing, R]]

    Treat scala.Left$ as abort

  19. def fromEitherTNonabort[F[_], N, R](default: => R)(eitherT: EitherT[F, N, R])(implicit F: Functor[F]): F[Checked[Nothing, N, R]]

    Treat scala.Left$ as non-abort with default as the result

  20. def fromEitherTNonaborts[F[_], N, R](default: => R)(eitherT: EitherT[F, NonEmptyChain[N], R])(implicit F: Functor[F]): F[Checked[Nothing, N, R]]

    Treat scala.Left$ as a chain of non-aborts with default as the result

  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. def result[A, N, R](result: R): Checked[A, N, R]
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. def unit[A, N]: Checked[A, N, Unit]
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @Deprecated
    Deprecated

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped