zipParRight<B> method

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

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

Implementation

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