Return true when value of r is equal to the value inside this Either. If this Either is Left, then return false.
true
r
false
@override bool elem(R r, Eq<R> eq) => eq.eqv(r, _value);