map<B> method

ReaderTaskBuilder<ENV, B> map<B>(
  1. B f(
    1. A
    )
)

Implementation

ReaderTaskBuilder<ENV, B> map<B>(
  B Function(A) f,
) =>
    ReaderTaskBuilder(RT.map(f)(_f));