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