Add self to other, and return a new masked array.
(self, other)
| 4304 | return self._comparison(other, operator.gt) |
| 4305 | |
| 4306 | def __add__(self, other): |
| 4307 | """ |
| 4308 | Add self to other, and return a new masked array. |
| 4309 | |
| 4310 | """ |
| 4311 | if self._delegate_binop(other): |
| 4312 | return NotImplemented |
| 4313 | return add(self, other) |
| 4314 | |
| 4315 | def __radd__(self, other): |
| 4316 | """ |
nothing calls this directly
no test coverage detected