(self, other)
| 679 | return self._apply_operator(operator.add, other, reverse=True) |
| 680 | |
| 681 | def __rand__(self, other): |
| 682 | other = other._transform if isinstance(other, Interactive) else other |
| 683 | return self._apply_operator(operator.and_, other, reverse=True) |
| 684 | |
| 685 | def __rdiv__(self, other): |
| 686 | other = other._transform if isinstance(other, Interactive) else other |
nothing calls this directly
no test coverage detected