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]

    Yields a Success with the given value.

  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()
  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 finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. def fromEither[A](ea: Either[String, A])(implicit ev: DummyImplicit): Result[A]
  15. def fromEither[A](ea: Either[Problem, A]): Result[A]
  16. def fromOption[A](oa: Option[A], ifNone: => String)(implicit ev: DummyImplicit): Result[A]
  17. def fromOption[A](oa: Option[A], ifNone: => Problem): Result[A]
  18. def fromProblems(problems: Chain[Problem]): Result[Unit]
  19. def fromProblems(problems: Seq[Problem]): Result[Unit]
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. implicit def grackleEqForResult[A](implicit arg0: Eq[A]): Eq[Result[A]]
    Definition Classes
    ResultInstances0
  22. implicit val grackleMonadErrorForResult: MonadError[Result, Either[Throwable, NonEmptyChain[Problem]]]
    Definition Classes
    ResultInstances
  23. implicit def grackleParallelForResult[E]: Aux[Result, Result]
    Definition Classes
    ResultInstances
  24. implicit def grackleSemigroupForResult[A](implicit arg0: Semigroup[A]): Semigroup[Result[A]]
    Definition Classes
    ResultInstances
  25. implicit val grackleTraverseFunctorForResult: Traverse[Result]
    Definition Classes
    ResultInstances0
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. def internalError[A](err: String): Result[A]
  28. def internalError[A](err: Throwable): Result[A]
  29. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. def pure[A](a: A): Result[A]

    Yields a Success with the given value.

  34. def success[A](a: A): Result[A]

    Yields a Success with the given value.

  35. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  36. def toString(): String
    Definition Classes
    AnyRef → Any
  37. val unit: Result[Unit]

    Yields a Success with unit value.

  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  41. def warning[A](warning: String, value: A): Result[A]
  42. def warning[A](warning: Problem, value: A): Result[A]

Inherited from ResultInstances

Inherited from ResultInstances0

Inherited from AnyRef

Inherited from Any

Ungrouped