bimap<E2, A2> method

TaskEitherBuilder<E2, A2> bimap<E2, A2>(
  1. E2 left(
    1. E
    ),
  2. A2 right(
    1. A
    )
)

Implementation

TaskEitherBuilder<E2, A2> bimap<E2, A2>(
  E2 Function(E) left,
  A2 Function(A) right,
) =>
    TaskEitherBuilder(
      TE.bimap(
        left: left,
        right: right,
      )(_f),
    );