Transform value of Left
@override Either<TL, R> mapLeft<TL>(TL Function(L left) fnL) { return Left<TL, R>(fnL(value)); }