map<R1, R2> function
Implementation
StreamEither<L, R2> Function<L>(
StreamEither<L, R1> either$,
) map<R1, R2>(
R2 Function(R1) right,
) =>
<L>(either$) => bimap(
left: identity<L>,
right: right,
)(either$);