Object/Class

morphir.sdk

Result

Related Docs: class Result | package sdk

Permalink

object Result extends Serializable

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

Type Members

  1. case class Err[+E, +A](error: E) extends Result[E, A] with Product with Serializable

    Permalink
  2. case class Ok[+E, +A](value: A) extends Result[E, A] with Product with Serializable

    Permalink
  3. type Result[+E, +A] = sdk.Result[E, A]

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def andThen[E, A, B](fn: (A) ⇒ Result[E, B])(result: Result[E, A]): Result[E, B]

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def err[E](error: E): Result[E, Nothing]

    Permalink
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def fromEither[E, A](either: Either[E, A]): Result[E, A]

    Permalink
  12. def fromMaybe[E, A](errorValue: ⇒ E): (Maybe[A]) ⇒ Result[E, A]

    Permalink
  13. def fromOption[E, A](errorValue: ⇒ E): (Option[A]) ⇒ Result[E, A]

    Permalink
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. def map[X, A, V](fn: (A) ⇒ V)(result: Result[X, A]): Result[X, V]

    Permalink
  18. def map2[X, A, B, V](fn: (A, B) ⇒ V)(resA: Result[X, A])(resB: Result[X, B]): Result[X, V]

    Permalink
  19. def map3[X, A, B, C, V](fn: (A, B, C) ⇒ V)(resA: Result[X, A])(resB: Result[X, B])(resC: Result[X, C]): Result[X, V]

    Permalink
  20. def map4[X, A, B, C, D, V](fn: (A, B, C, D) ⇒ V)(resA: Result[X, A])(resB: Result[X, B])(resC: Result[X, C])(resD: Result[X, D]): Result[X, V]

    Permalink
  21. def map5[X, A, B, C, D, E, V](fn: (A, B, C, D, E) ⇒ V)(resA: Result[X, A])(resB: Result[X, B])(resC: Result[X, C])(resD: Result[X, D])(resE: Result[X, E]): Result[X, V]

    Permalink
  22. def mapError[E, E1, A](fn: (E) ⇒ E1): (Result[E, A]) ⇒ Result[E1, A]

    Permalink
  23. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. def ok[A](value: A): Result[Nothing, A]

    Permalink
  27. implicit def resultFromEither[E, A](either: Either[E, A]): Result[E, A]

    Permalink
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  29. def toMaybe[E, A](result: Result[E, A]): Maybe[A]

    Permalink
  30. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  31. def unit[E]: Result[E, Unit]

    Permalink
  32. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped