doOnRight<R> function

StreamEither<L, R> Function<L>(StreamEither<L, R> either$) doOnRight<R>(
  1. void procedure(
    1. R
    )
)

Implementation

StreamEither<L, R> Function<L>(
  StreamEither<L, R> either$,
) doOnRight<R>(
  void Function(R) procedure,
) =>
    <L>(either$) => doOnEither(
          left: (L _) {},
          right: procedure,
        )(either$);