zipLeft<X> method

ZIO<R, E, A> zipLeft<X>(
  1. ZIO<R, E, X> zio
)

Run this ZIO and the given ZIO sequentially, ignoring the result of the given ZIO.

Implementation

ZIO<R, E, A> zipLeft<X>(ZIO<R, E, X> zio) => tap((a) => zio);