tapLeft

inline fun tapLeft(f: (left: A) -> Unit): Either<A, B>

Deprecated

tapLeft is being renamed to onLeft to be more consistent with the Kotlin Standard Library naming

Replace with

onLeft(f)