MCPcopy Create free account
hub / github.com/numpy/numpy / __radd__

Method __radd__

numpy/core/defchararray.py:2191–2200  ·  view source on GitHub ↗

Return (other + self), that is string concatenation, element-wise for a pair of array_likes of `bytes_` or `str_`. See Also -------- add

(self, other)

Source from the content-addressed store, hash-verified

2189 return asarray(add(self, other))
2190
2191 def __radd__(self, other):
2192 """
2193 Return (other + self), that is string concatenation,
2194 element-wise for a pair of array_likes of `bytes_` or `str_`.
2195
2196 See Also
2197 --------
2198 add
2199 """
2200 return asarray(add(numpy.asarray(other), self))
2201
2202 def __mul__(self, i):
2203 """

Callers

nothing calls this directly

Calls 2

asarrayFunction · 0.70
addFunction · 0.70

Tested by

no test coverage detected