mapRight<A2> method

StreamEitherBuilder<E, A2> mapRight<A2>(
  1. A2 right(
    1. A
    )
)

Implementation

StreamEitherBuilder<E, A2> mapRight<A2>(
  A2 Function(A) right,
) =>
    StreamEitherBuilder(SE.map(right)(_f));