Returns true when this is a Right containing value.
true
value
bool contains(R value) => fold((left) => false, (right) => right == value);