Return (self + other), that is string concatenation, element-wise for a pair of array_likes of str or unicode. See also -------- add
(self, other)
| 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 | """ |