object Checked extends Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Checked
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def abort[A, N, R](abort: A): Checked[A, N, R]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cantonUtilMonadErrorForChecked[A, N]: MonadError[[γ$0$]Checked[A, N, γ$0$], A]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def cond[A, R](test: Boolean, right: => R, left: => A): Checked[A, Nothing, R]
Treat test failure as abort
- def continue[A, N](nonabort: N): Checked[A, N, Unit]
- def continueWithResult[A, N, R](nonabort: N, result: R): Checked[A, N, R]
- def continues[A, N](nonaborts: NonEmptyChain[N]): Checked[A, N, Unit]
- def continuesWithResult[A, N, R](nonaborts: NonEmptyChain[N], result: R): Checked[A, N, R]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fromEither[A, R](either: Either[A, R]): Checked[A, Nothing, R]
Treat scala.Left$ as abort
- 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 - 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 - def fromEitherT[F[_], A, R](eitherT: EitherT[F, A, R])(implicit F: Functor[F]): F[Checked[A, Nothing, R]]
Treat scala.Left$ as abort
- 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 - 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 - final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def result[A, N, R](result: R): Checked[A, N, R]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def unit[A, N]: Checked[A, N, Unit]
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])