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

Method __add__

site-packages/numpy/core/defchararray.py:2084–2093  ·  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

2082 return less(self, other)
2083
2084 def __add__(self, other):
2085 """
2086 Return (self + other), that is string concatenation,
2087 element-wise for a pair of array_likes of str or unicode.
2088
2089 See also
2090 --------
2091 add
2092 """
2093 return asarray(add(self, other))
2094
2095 def __radd__(self, other):
2096 """

Callers

nothing calls this directly

Calls 2

asarrayFunction · 0.70
addFunction · 0.70

Tested by

no test coverage detected