MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / __radd__

Method __radd__

site-packages/numpy/core/defchararray.py:2095–2104  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

2093 return asarray(add(self, other))
2094
2095 def __radd__(self, other):
2096 """
2097 Return (other + self), that is string concatenation,
2098 element-wise for a pair of array_likes of `string_` or `unicode_`.
2099
2100 See also
2101 --------
2102 add
2103 """
2104 return asarray(add(numpy.asarray(other), self))
2105
2106 def __mul__(self, i):
2107 """

Callers

nothing calls this directly

Calls 2

asarrayFunction · 0.70
addFunction · 0.70

Tested by

no test coverage detected