UIO
object UIO
Value members
Concrete methods
def collectAll[A, Collection <: (Iterable)](in: Collection[UIO[A]])(implicit bf: BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
- See also:
See [zio.ZIO.collectAll]
def collectAllPar[A, Collection <: (Iterable)](as: Collection[UIO[A]])(implicit bf: BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
- See also:
See [zio.ZIO.collectAllPar]
def collectAllParN[A, Collection <: (Iterable)](n: Int)(as: Collection[UIO[A]])(implicit bf: BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
- See also:
def collectAllSuccesses[A, Collection <: (Iterable)](in: Collection[UIO[A]])(implicit bf: BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
- See also:
def collectAllSuccessesPar[A, Collection <: (Iterable)](as: Collection[UIO[A]])(implicit bf: BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
- See also:
def collectAllSuccessesParN[A, Collection <: (Iterable)](n: Int)(as: Collection[UIO[A]])(implicit bf: BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
- See also:
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]]
- See also:
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]]
- See also:
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]]
- 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 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*]]
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:
See [zio.ZIO.foreachPar]
def foreachPar[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => UIO[(Key2, Value2)]): UIO[Map[Key2, Value2]]
- See also:
See [zio.ZIO.foreachPar]
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: