Object/Trait

s_mach.codetools.macros

Result

Related Docs: trait Result | package macros

Permalink

object Result

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

Type Members

  1. case class Debug(message: String) extends Issue with Product with Serializable

    Permalink
  2. case class Error(message: String, optCause: Option[Throwable] = None) extends Issue with Product with Serializable

    Permalink
  3. case class Failure(zomIssue: List[Issue]) extends Result[Nothing] with Product with Serializable

    Permalink
  4. case class Info(message: String) extends Issue with Product with Serializable

    Permalink
  5. sealed trait Issue extends AnyRef

    Permalink
  6. case class Success[+A](value: A, zomIssue: List[Issue]) extends Result[A] with Product with Serializable

    Permalink
  7. case class Warning(message: String, optCause: Option[Throwable] = None) extends Issue with Product with Serializable

    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. object Error extends Serializable

    Permalink
  5. def applicative[A, B, C, D, ZZ](ra: Result[A], rb: Result[B], rc: Result[C], rd: Result[D])(f: (A, B, C, D) ⇒ Result[ZZ]): Result[ZZ]

    Permalink
  6. def applicative[A, B, C, ZZ](ra: Result[A], rb: Result[B], rc: Result[C])(f: (A, B, C) ⇒ Result[ZZ]): Result[ZZ]

    Permalink
  7. def applicative[A, B, ZZ](ra: Result[A], rb: Result[B])(f: (A, B) ⇒ Result[ZZ]): Result[ZZ]

    Permalink
  8. def apply[A](value: ⇒ A, zomIssue: Issue*): Result[A]

    Permalink

    returns

    a result with issues. If an exception thrown while evaluating value, it is caught and a failure returned. Otherwise, success is returned.

  9. final def asInstanceOf[T0]: T0

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. def error[A](cause: Throwable): Result[A]

    Permalink

    returns

    a failing result with an error

  14. def error[A](msg: String, optCause: Option[Exception] = None): Result[A]

    Permalink

    returns

    a failing result with an error

  15. def errors[A](oomError: Error*): Result[A]

    Permalink

    returns

    a failing result with errors

  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  23. def sequence[A, M[AA] <: Traversable[AA]](m: M[Result[A]])(implicit cbf: CanBuildFrom[Nothing, A, M[A]]): Result[M[A]]

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

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. def unapply[A](r: Result[A]): Option[(Option[A], List[Issue])]

    Permalink
  27. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped