mapLeft<E2> method

StreamEitherBuilder<E2, A> mapLeft<E2>(
  1. E2 left(
    1. E
    )
)

Implementation

StreamEitherBuilder<E2, A> mapLeft<E2>(
  E2 Function(E) left,
) =>
    StreamEitherBuilder(SE.mapLeft(left)(_f));