Return (other + self), that is string concatenation, element-wise for a pair of array_likes of `string_` or `unicode_`. See also -------- add
(self, other)
| 2093 | return asarray(add(self, other)) |
| 2094 | |
| 2095 | def __radd__(self, other): |
| 2096 | """ |
| 2097 | Return (other + self), that is string concatenation, |
| 2098 | element-wise for a pair of array_likes of `string_` or `unicode_`. |
| 2099 | |
| 2100 | See also |
| 2101 | -------- |
| 2102 | add |
| 2103 | """ |
| 2104 | return asarray(add(numpy.asarray(other), self)) |
| 2105 | |
| 2106 | def __mul__(self, i): |
| 2107 | """ |