Runs f with the Left value, if present, and returns this Either.
f
Either<L, R> tapLeft(void Function(L left) f) { if (isLeft()) { f(getLeft()); } return this; }