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

Method __add__

numpy/core/defchararray.py:2180–2189  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

2178 return less(self, other)
2179
2180 def __add__(self, other):
2181 """
2182 Return (self + other), that is string concatenation,
2183 element-wise for a pair of array_likes of str or unicode.
2184
2185 See Also
2186 --------
2187 add
2188 """
2189 return asarray(add(self, other))
2190
2191 def __radd__(self, other):
2192 """

Callers

nothing calls this directly

Calls 2

asarrayFunction · 0.70
addFunction · 0.70

Tested by

no test coverage detected