UIO

object UIO
class Object
trait Matchable
class Any
UIO.type

Value members

Concrete methods

def absolve[A](v: UIO[Either[Nothing, A]]): UIO[A]
See also:
def apply[A](a: => A): UIO[A]
See also:
def bracket[A](acquire: UIO[A]): BracketAcquire[Any, Nothing, A]
See also:

See bracket zio.ZIO

def bracket[A, B](acquire: UIO[A], release: A => UIO[Any], use: A => UIO[B]): UIO[B]
See also:

See bracket zio.ZIO

def bracketExit[A](acquire: UIO[A]): BracketExitAcquire[Any, Nothing, A]
See also:

See bracketExit zio.ZIO

def bracketExit[A, B](acquire: UIO[A], release: (A, Exit[Nothing, B]) => UIO[Any], use: A => UIO[B]): UIO[B]
See also:

See bracketExit zio.ZIO

def checkTraced[A](f: TracingStatus => UIO[A]): UIO[A]
See also:
def collect[A, B, Collection <: (Iterable)](in: Collection[A])(f: A => IO[Option[Nothing], B])(implicit bf: BuildFrom[Collection[A], B, Collection[B]]): UIO[Collection[B]]
See also:
def collectAll[A, Collection <: (Iterable)](in: Collection[UIO[A]])(implicit bf: BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
See also:
def collectAll[A](in: Set[UIO[A]]): UIO[Set[A]]
See also:
def collectAll[A : ClassTag](in: Array[UIO[A]]): UIO[Array[A]]
See also:
def collectAll[A](in: Option[UIO[A]]): UIO[Option[A]]
See also:
See also:
def collectAllPar[A, Collection <: (Iterable)](as: Collection[UIO[A]])(implicit bf: BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
See also:
def collectAllPar[A](as: Set[UIO[A]]): UIO[Set[A]]
See also:
def collectAllPar[A : ClassTag](as: Array[UIO[A]]): UIO[Array[A]]
See also:
def collectAllParN[A, Collection <: (Iterable)](n: Int)(as: Collection[UIO[A]])(implicit bf: BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
def collectAllParN_[A](n: Int)(as: Iterable[UIO[A]]): UIO[Unit]
def collectAllPar_[A](in: Iterable[UIO[A]]): UIO[Unit]
See also:
def collectAllSuccesses[A, Collection <: (Iterable)](in: Collection[UIO[A]])(implicit bf: BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
def collectAllSuccessesPar[A, Collection <: (Iterable)](as: Collection[UIO[A]])(implicit bf: BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
def collectAllSuccessesParN[A, Collection <: (Iterable)](n: Int)(as: Collection[UIO[A]])(implicit bf: BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
def collectAllWith[A, B, Collection <: (Iterable)](in: Collection[UIO[A]])(f: PartialFunction[A, B])(implicit bf: BuildFrom[Collection[UIO[A]], B, Collection[B]]): UIO[Collection[B]]
def collectAllWithPar[A, B, Collection <: (Iterable)](as: Collection[UIO[A]])(f: PartialFunction[A, B])(implicit bf: BuildFrom[Collection[UIO[A]], B, Collection[B]]): UIO[Collection[B]]
def collectAllWithParN[A, B, Collection <: (Iterable)](n: Int)(as: Collection[UIO[A]])(f: PartialFunction[A, B])(implicit bf: BuildFrom[Collection[UIO[A]], B, Collection[B]]): UIO[Collection[B]]
def collectAll_[A](in: Iterable[UIO[A]]): UIO[Unit]
See also:
def collectFirst[A, B](as: Iterable[A])(f: A => UIO[Option[B]]): UIO[Option[B]]
See also:
def collectPar[A, B, Collection <: (Iterable)](in: Collection[A])(f: A => IO[Option[Nothing], B])(implicit bf: BuildFrom[Collection[A], B, Collection[B]]): UIO[Collection[B]]
See also:
def collectParN[A, B, Collection <: (Iterable)](n: Int)(in: Collection[A])(f: A => IO[Option[Nothing], B])(implicit bf: BuildFrom[Collection[A], B, Collection[B]]): UIO[Collection[B]]
See also:
def debug(value: Any): UIO[Unit]
See also:
def descriptorWith[A](f: Descriptor => UIO[A]): UIO[A]
def die(t: => Throwable): UIO[Nothing]
See also:
def dieMessage(message: => String): UIO[Nothing]
See also:
def done[A](r: => Exit[Nothing, A]): UIO[A]
See also:
def effectAsync[A](register: UIO[A] => Unit => Any, blockingOn: List[Id]): UIO[A]
See also:
def effectAsyncInterrupt[A](register: UIO[A] => Unit => Either[Canceler[Any], UIO[A]], blockingOn: List[Id]): UIO[A]
def effectAsyncM[A](register: UIO[A] => Unit => UIO[Any]): UIO[A]
See also:
def effectAsyncMaybe[A](register: UIO[A] => Unit => Option[UIO[A]], blockingOn: List[Id]): UIO[A]
def effectSuspendTotal[A](uio: => UIO[A]): UIO[A]
def effectTotal[A](effect: => A): UIO[A]
See also:
def exists[A](as: Iterable[A])(f: A => UIO[Boolean]): UIO[Boolean]
See also:
def filter[A, Collection <: (Iterable)](as: Collection[A])(f: A => UIO[Boolean])(implicit bf: BuildFrom[Collection[A], A, Collection[A]]): UIO[Collection[A]]
See also:

[[zio.ZIO.filter[R,E,A,Collection*]]

def filter[A](as: Set[A])(f: A => UIO[Boolean]): UIO[Set[A]]
See also:
def filterNot[A, Collection <: (Iterable)](as: Collection[A])(f: A => UIO[Boolean])(implicit bf: BuildFrom[Collection[A], A, Collection[A]]): UIO[Collection[A]]
See also:

[[zio.ZIO.filterNot[R,E,A,Collection*]]

def filterNot[A](as: Set[A])(f: A => UIO[Boolean]): UIO[Set[A]]
See also:
def filterNotPar[A, Collection <: (Iterable)](as: Collection[A])(f: A => UIO[Boolean])(implicit bf: BuildFrom[Collection[A], A, Collection[A]]): UIO[Collection[A]]
See also:

[[zio.ZIO.filterNotPar[R,E,A,Collection*]]

def filterNotPar[A](as: Set[A])(f: A => UIO[Boolean]): UIO[Set[A]]
def filterPar[A, Collection <: (Iterable)](as: Collection[A])(f: A => UIO[Boolean])(implicit bf: BuildFrom[Collection[A], A, Collection[A]]): UIO[Collection[A]]
See also:

[[zio.ZIO.filterPar[R,E,A,Collection*]]

def filterPar[A](as: Set[A])(f: A => UIO[Boolean]): UIO[Set[A]]
See also:
def firstSuccessOf[A](uio: UIO[A], rest: Iterable[UIO[A]]): UIO[A]
def flatten[A](uio: UIO[UIO[A]]): UIO[A]
See also:
def foldLeft[S, A](in: Iterable[A])(zero: S)(f: (S, A) => UIO[S]): UIO[S]
See also:
def foldRight[S, A](in: Iterable[A])(zero: S)(f: (A, S) => UIO[S]): UIO[S]
See also:
def forall[A](as: Iterable[A])(f: A => UIO[Boolean]): UIO[Boolean]
See also:
def foreach[A, B, Collection <: (Iterable)](in: Collection[A])(f: A => UIO[B])(implicit bf: BuildFrom[Collection[A], B, Collection[B]]): UIO[Collection[B]]
See also:
def foreach[A, B](in: Set[A])(f: A => UIO[B]): UIO[Set[B]]
See also:
def foreach[A, B : ClassTag](in: Array[A])(f: A => UIO[B]): UIO[Array[B]]
See also:
def foreach[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => UIO[(Key2, Value2)]): UIO[Map[Key2, Value2]]
See also:
def foreach[A, B](in: Option[A])(f: A => UIO[B]): UIO[Option[B]]
See also:
def foreach[A, B](in: NonEmptyChunk[A])(f: A => UIO[B]): UIO[NonEmptyChunk[B]]
See also:
final def foreachExec[A, B, Collection <: (Iterable)](as: Collection[A])(exec: ExecutionStrategy)(f: A => UIO[B])(implicit bf: BuildFrom[Collection[A], B, Collection[B]]): UIO[Collection[B]]
See also:
def foreachPar[A, B, Collection <: (Iterable)](as: Collection[A])(fn: A => UIO[B])(implicit bf: BuildFrom[Collection[A], B, Collection[B]]): UIO[Collection[B]]
See also:
def foreachPar[A, B](as: Set[A])(fn: A => UIO[B]): UIO[Set[B]]
See also:
def foreachPar[A, B : ClassTag](as: Array[A])(fn: A => UIO[B]): UIO[Array[B]]
See also:
def foreachPar[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => UIO[(Key2, Value2)]): UIO[Map[Key2, Value2]]
See also:
def foreachPar[A, B](as: NonEmptyChunk[A])(fn: A => UIO[B]): UIO[NonEmptyChunk[B]]
See also:
def foreachParN[A, B, Collection <: (Iterable)](n: Int)(as: Collection[A])(fn: A => UIO[B])(implicit bf: BuildFrom[Collection[A], B, Collection[B]]): UIO[Collection[B]]
See also:
def foreachParN_[A](n: Int)(as: Iterable[A])(f: A => UIO[Any]): UIO[Unit]
See also:
def foreachPar_[A](as: Iterable[A])(f: A => UIO[Any]): UIO[Unit]
See also:
def foreach_[A](as: Iterable[A])(f: A => UIO[Any]): UIO[Unit]
See also:
def forkAll[A, Collection <: (Iterable)](as: Collection[UIO[A]])(implicit bf: BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Fiber[Nothing, Collection[A]]]
See also:
def forkAll_[A](as: Iterable[UIO[A]]): UIO[Unit]
See also:
def fromEither[A](v: => Either[Nothing, A]): UIO[A]
See also:
def fromFiber[A](fiber: => Fiber[Nothing, A]): UIO[A]
See also:
def fromFiberM[A](fiber: UIO[Fiber[Nothing, A]]): UIO[A]
See also:
def fromFunction[A](f: Any => A): UIO[A]
def fromFunctionM[A](f: Any => UIO[A]): UIO[A]
def halt(cause: => Cause[Nothing]): UIO[Nothing]
See also:
def haltWith(function: () => ZTrace => Cause[Nothing]): UIO[Nothing]
def identity: UIO[Any]
def ifM(b: UIO[Boolean]): IfM[Any, Nothing]
See also:
def interruptAs(fiberId: => Id): UIO[Nothing]
See also:
def interruptible[A](uio: UIO[A]): UIO[A]
See also:
def iterate[S](initial: S)(cont: S => Boolean)(body: S => UIO[S]): UIO[S]
See also:
def left[A](a: => A): UIO[Either[A, Nothing]]
See also:
def lock[A](executor: => Executor)(uio: UIO[A]): UIO[A]
See also:
def loop[A, S](initial: S)(cont: S => Boolean, inc: S => S)(body: S => UIO[A]): UIO[List[A]]
See also:
def loop_[S](initial: S)(cont: S => Boolean, inc: S => S)(body: S => UIO[Any]): UIO[Unit]
See also:
def mapN[A, B, C](uio1: UIO[A], uio2: UIO[B])(f: (A, B) => C): UIO[C]
See also:
def mapN[A, B, C, D](uio1: UIO[A], uio2: UIO[B], uio3: UIO[C])(f: (A, B, C) => D): UIO[D]
See also:
def mapN[A, B, C, D, F](uio1: UIO[A], uio2: UIO[B], uio3: UIO[C], uio4: UIO[D])(f: (A, B, C, D) => F): UIO[F]
See also:
def mapParN[A, B, C](uio1: UIO[A], uio2: UIO[B])(f: (A, B) => C): UIO[C]
See also:
def mapParN[A, B, C, D](uio1: UIO[A], uio2: UIO[B], uio3: UIO[C])(f: (A, B, C) => D): UIO[D]
See also:
def mapParN[A, B, C, D, F](uio1: UIO[A], uio2: UIO[B], uio3: UIO[C], uio4: UIO[D])(f: (A, B, C, D) => F): UIO[F]
See also:
def memoize[A, B](f: A => UIO[B]): UIO[A => UIO[B]]
See also:
def mergeAll[A, B](in: Iterable[UIO[A]])(zero: B)(f: (B, A) => B): UIO[B]
See also:
def mergeAllPar[A, B](in: Iterable[UIO[A]])(zero: B)(f: (B, A) => B): UIO[B]
See also:
def not(effect: UIO[Boolean]): UIO[Boolean]
See also:
def raceAll[A](uio: UIO[A], uios: Iterable[UIO[A]]): UIO[A]
See also:
def reduceAll[A](a: UIO[A], as: Iterable[UIO[A]])(f: (A, A) => A): UIO[A]
See also:
def reduceAllPar[A](a: UIO[A], as: Iterable[UIO[A]])(f: (A, A) => A): UIO[A]
See also:
def replicate[A](n: Int)(effect: UIO[A]): Iterable[UIO[A]]
See also:
def replicateM[A](n: Int)(effect: UIO[A]): UIO[Iterable[A]]
See also:
def replicateM_[A](n: Int)(effect: UIO[A]): UIO[Unit]
See also:
def reserve[A, B](reservation: UIO[Reservation[Any, Nothing, A]])(use: A => UIO[B]): UIO[B]
See also:
def right[B](b: => B): UIO[Either[Nothing, B]]
See also:
def runtime: UIO[Runtime[Any]]
See also:
def some[A](a: => A): UIO[Option[A]]
See also:
def succeed[A](a: => A): UIO[A]
See also:
See also:
def traced[A](uio: UIO[A]): UIO[A]
See also:
def uninterruptible[A](uio: UIO[A]): UIO[A]
def unless(b: => Boolean)(zio: => UIO[Any]): UIO[Unit]
See also:
def unlessM(b: UIO[Boolean]): UnlessM[Any, Nothing]
See also:
def unsandbox[A](v: IO[Cause[Nothing], A]): UIO[A]
def untraced[A](uio: UIO[A]): UIO[A]
See also:
def when(b: => Boolean)(uio: => UIO[Any]): UIO[Unit]
See also:
def whenCase[A](a: => A)(pf: PartialFunction[A, UIO[Any]]): UIO[Unit]
See also:
def whenCaseM[A](a: UIO[A])(pf: PartialFunction[A, UIO[Any]]): UIO[Unit]
See also:
def whenM(b: UIO[Boolean]): WhenM[Any, Nothing]
See also:

Concrete fields

val fiberId: UIO[Id]
See also:
val interrupt: UIO[Nothing]
See also:
val never: UIO[Nothing]
See also:
val none: UIO[Option[Nothing]]
See also:
val unit: UIO[Unit]
See also:
See also: