MCPcopy Index your code
hub / github.com/numpy/numpy / __radd__

Method __radd__

numpy/ma/core.py:4315–4322  ·  view source on GitHub ↗

Add other to self, and return a new masked array.

(self, other)

Source from the content-addressed store, hash-verified

4313 return add(self, other)
4314
4315 def __radd__(self, other):
4316 """
4317 Add other to self, and return a new masked array.
4318
4319 """
4320 # In analogy with __rsub__ and __rdiv__, use original order:
4321 # we get here from `other + self`.
4322 return add(other, self)
4323
4324 def __sub__(self, other):
4325 """

Callers

nothing calls this directly

Calls 1

addFunction · 0.85

Tested by

no test coverage detected