Add self to other, and return a new masked array.
(self, other)
| 4208 | return self._comparison(other, operator.gt) |
| 4209 | |
| 4210 | def __add__(self, other): |
| 4211 | """ |
| 4212 | Add self to other, and return a new masked array. |
| 4213 | |
| 4214 | """ |
| 4215 | if self._delegate_binop(other): |
| 4216 | return NotImplemented |
| 4217 | return add(self, other) |
| 4218 | |
| 4219 | def __radd__(self, other): |
| 4220 | """ |
nothing calls this directly
no test coverage detected