You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rename accept to ifPresentOrElse. This is a more familiar name.
Remove acceptRight(Consumer). It can be expressed as getRight().ifPresent(Consumer).
Remove acceptLeft(Consumer). It can be expressed as getLeft().ifPresent(Consumer).
Performance improvement: map, flatMap and filter return the same Either instance, if invoked on a Left. Same applies to their left-side mirror methods, if invoked on a Right.