tapLeft<L, R> function
Implementation
TaskEither<L, R> Function(TaskEither<L, R> taskEither) tapLeft<L, R>(
FutureOr<void> Function(L value) f,
) =>
(fa) => TaskEither(fa.p(task.tap(either.fold(f, identity))));
TaskEither<L, R> Function(TaskEither<L, R> taskEither) tapLeft<L, R>(
FutureOr<void> Function(L value) f,
) =>
(fa) => TaskEither(fa.p(task.tap(either.fold(f, identity))));