bimap<C, D> method

TaskEither<C, D> bimap<C, D>(
  1. C mLeft(
    1. L l
    ),
  2. D mRight(
    1. R r
    )
)

Define two functions to change both the Left and Right value of the TaskEither.

Same as map+mapLeft but for both Left and Right (map is only to change Right, while mapLeft is only to change Left).

Implementation

TaskEither<C, D> bimap<C, D>(C Function(L l) mLeft, D Function(R r) mRight) =>
    mapLeft(mLeft).map(mRight);