mapLeft<L1, L2> function
Implementation
StreamEither<L2, R> Function<R>(
StreamEither<L1, R> either$,
) mapLeft<L1, L2>(
L2 Function(L1) left,
) =>
<R>(either$) => bimap(
left: left,
right: identity<R>,
)(either$);