HExit

object HExit
trait Sum
trait Mirror
class Object
trait Matchable
class Any
HExit.type

Type members

Classlikes

final case class Die(t: Throwable)
final case class Effect[R, E, A](z: ZIO[R, Option[E], A])
case object Empty
final case class Failure[E](e: E)
final case class Success[A](a: A)

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror

The name of the type

The name of the type

Inherited from:
Mirror

Value members

Concrete methods

def die(t: Throwable): HExit[Any, Nothing, Nothing]
def empty: HExit[Any, Nothing, Nothing]
def fail[E](e: E): HExit[Any, E, Nothing]
def fromZIO[R, E, A](z: ZIO[R, E, A]): HExit[R, E, A]
def succeed[A](a: A): HExit[Any, Nothing, A]
def unit: HExit[Any, Nothing, Unit]