zipParLeft<B> method

ZIO<R, E, A> zipParLeft<B>(
  1. ZIO<R, E, B> zio
)

Run this ZIO and the given ZIO in parallel, ignoring the result of the given ZIO.

Implementation

ZIO<R, E, A> zipParLeft<B>(ZIO<R, E, B> zio) =>
    zipParWith(zio, (a, B b) => a);