object Result extends ResultInstances

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Result
  2. ResultInstances
  3. ResultInstances0
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Failure(problems: NonEmptyChain[Problem]) extends Result[Nothing] with Product with Serializable
  2. final case class InternalError(error: Throwable) extends Result[Nothing] with Product with Serializable
  3. final case class Success[+T](value: T) extends Result[T] with Product with Serializable
  4. final case class Warning[+T](problems: NonEmptyChain[Problem], value: T) extends Result[T] 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 apply[A](a: A): Result[A]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def catchNonFatal[T](body: => T): Result[T]
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. def combineAllWithDefault[T](ress: List[Result[T]], default: => T): Result[List[T]]
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def failure[A](p: Problem): Result[A]
  12. def failure[A](s: String): Result[A]
  13. def fromEither[A](ea: Either[String, A])(implicit ev: DummyImplicit): Result[A]
  14. def fromEither[A](ea: Either[Problem, A]): Result[A]
  15. def fromOption[A](oa: Option[A], ifNone: => String)(implicit ev: DummyImplicit): Result[A]
  16. def fromOption[A](oa: Option[A], ifNone: => Problem): Result[A]
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. implicit def grackleEqForResult[A](implicit arg0: Eq[A]): Eq[Result[A]]
    Definition Classes
    ResultInstances0
  19. implicit val grackleMonadErrorForResult: MonadError[Result, Either[Throwable, NonEmptyChain[Problem]]]
    Definition Classes
    ResultInstances
  20. implicit def grackleParallelForResult[E]: Aux[Result, Result]
    Definition Classes
    ResultInstances
  21. implicit def grackleSemigroupForResult[A](implicit arg0: Semigroup[A]): Semigroup[Result[A]]
    Definition Classes
    ResultInstances
  22. implicit val grackleTraverseFunctorForResult: Traverse[Result]
    Definition Classes
    ResultInstances0
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. def internalError[A](err: String): Result[A]
  25. def internalError[A](err: Throwable): Result[A]
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. def success[A](a: A): Result[A]
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. val unit: Result[Unit]
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. def warning[A](warning: String, value: A): Result[A]
  38. def warning[A](warning: Problem, value: A): Result[A]

Deprecated Value Members

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

Inherited from ResultInstances

Inherited from ResultInstances0

Inherited from AnyRef

Inherited from Any

Ungrouped