thenLeft<TL> abstract method

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

Transform value of Left when transformation may be finished with an Right

Implementation

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