ifLeft

inline fun <L, R> Either<L, R>.ifLeft(fLeft: (L) -> Unit): Either<L, R>

Executes provided action if this is Either.Left.

Important: This is a Public Preview API. It may be changed or removed at any time.