Add other to self, and return a new masked array.
(self, other)
| 4217 | return add(self, other) |
| 4218 | |
| 4219 | def __radd__(self, other): |
| 4220 | """ |
| 4221 | Add other to self, and return a new masked array. |
| 4222 | |
| 4223 | """ |
| 4224 | # In analogy with __rsub__ and __rdiv__, use original order: |
| 4225 | # we get here from `other + self`. |
| 4226 | return add(other, self) |
| 4227 | |
| 4228 | def __sub__(self, other): |
| 4229 | """ |