productL<B> method

Task<A> productL<B>(
  1. Task<B> that
)

Implementation

Task<A> productL<B>(Task<B> that) => flatMap((a) => that.replace(a));