Return (other + self), that is string concatenation, element-wise for a pair of array_likes of `bytes_` or `str_`. See Also -------- add
(self, other)
| 2189 | return asarray(add(self, other)) |
| 2190 | |
| 2191 | def __radd__(self, other): |
| 2192 | """ |
| 2193 | Return (other + self), that is string concatenation, |
| 2194 | element-wise for a pair of array_likes of `bytes_` or `str_`. |
| 2195 | |
| 2196 | See Also |
| 2197 | -------- |
| 2198 | add |
| 2199 | """ |
| 2200 | return asarray(add(numpy.asarray(other), self)) |
| 2201 | |
| 2202 | def __mul__(self, i): |
| 2203 | """ |