mapLeft<TL> abstract method

Either<TL, R> mapLeft<TL>(
  1. TL fnL(
    1. L left
    )
)

Transform value of Left

Implementation

Either<TL, R> mapLeft<TL>(TL Function(L left) fnL);