thenLeft<TL> method

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

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

Implementation

@override
Either<TL, R> thenLeft<TL>(Either<TL, R> Function(L left) fnL) {
  return Right<TL, R>(value);
}