doOnLeft method

StreamEitherBuilder<E, A> doOnLeft(
  1. void procedure(
    1. E
    )
)

Implementation

StreamEitherBuilder<E, A> doOnLeft(
  void Function(E) procedure,
) =>
    StreamEitherBuilder(SE.doOnLeft(procedure)(_f));