URIO
object URIO
Value members
Concrete methods
def collectAllWith[R, A, B, Collection <: (Iterable)](in: Collection[URIO[R, A]])(f: PartialFunction[A, B])(implicit bf: BuildFrom[Collection[URIO[R, A]], B, Collection[B]]): URIO[R, Collection[B]]
- See also:
def collectAllWithPar[R, A, B, Collection <: (Iterable)](as: Collection[URIO[R, A]])(f: PartialFunction[A, B])(implicit bf: BuildFrom[Collection[URIO[R, A]], B, Collection[B]]): URIO[R, Collection[B]]
- See also:
def collectAllWithParN[R, A, B, Collection <: (Iterable)](n: Int)(as: Collection[URIO[R, A]])(f: PartialFunction[A, B])(implicit bf: BuildFrom[Collection[URIO[R, A]], B, Collection[B]]): URIO[R, Collection[B]]
- See also:
final def foreachExec[R, A, B, Collection <: (Iterable)](as: Collection[A])(exec: ExecutionStrategy)(f: A => URIO[R, B])(implicit bf: BuildFrom[Collection[A], B, Collection[B]]): URIO[R, Collection[B]]
- See also:
def foreachPar[R, A, B, Collection <: (Iterable)](as: Collection[A])(fn: A => URIO[R, B])(implicit bf: BuildFrom[Collection[A], B, Collection[B]]): URIO[R, Collection[B]]
- See also:
See [zio.ZIO.foreachPar]
def foreachPar[R, Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => URIO[R, (Key2, Value2)]): URIO[R, Map[Key2, Value2]]
- See also:
See [zio.ZIO.foreachPar]
def reduceAllPar[R, R1 <: R, A](a: URIO[R, A], as: Iterable[URIO[R1, A]])(f: (A, A) => A): URIO[R1, A]
- See also:
def reserve[R, A, B](reservation: URIO[R, Reservation[R, Nothing, A]])(use: A => URIO[R, B]): URIO[R, B]
- See also: