(self, other)
| 675 | |
| 676 | # Reverse binary operators |
| 677 | def __radd__(self, other): |
| 678 | other = other._transform if isinstance(other, Interactive) else 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 |
nothing calls this directly
no test coverage detected