Fail

org.finos.morphir.foundations.capabilities.free.Free$.Fail
final case class Fail[F[_, _], E](a: E) extends Free[F, E, Nothing]

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Free[F, E, Nothing]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

final def catchAll[E2, A1](f: E => Free[F, E2, A1]): Free[F, E2, A1]

Attributes

Inherited from:
Free
final def flatMap[E1 >: E, B](f: Nothing => Free[F, E1, B]): Free[F, E1, B]

Attributes

Inherited from:
Free
final def flatten[E1 >: E, B](implicit ev: Nothing <:< Free[F, E1, B]): Free[F, E1, B]

Attributes

Inherited from:
Free
def interpret[G[_, _]](interpreter: Interpreter[F, G])(implicit g: Executable[G]): G[E, A]

Attributes

Inherited from:
Free
final def map[B](f: Nothing => B): Free[F, E, B]

Attributes

Inherited from:
Free
final def mapError[E2](f: E => E2): Free[F, E2, A]

Attributes

Inherited from:
Free
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def unsafeInterpret(unsafeInterpreter: UnsafeInterpreter[F]): Either[E, A]

Attributes

Inherited from:
Free