Return (other + self), that is string concatenation, element-wise for a pair of array_likes of `bytes_` or `str_`. See Also -------- add
(self, other)
| 675 | return add(self, other) |
| 676 | |
| 677 | def __radd__(self, other): |
| 678 | """ |
| 679 | Return (other + self), that is string concatenation, |
| 680 | element-wise for a pair of array_likes of `bytes_` or `str_`. |
| 681 | |
| 682 | See Also |
| 683 | -------- |
| 684 | add |
| 685 | """ |
| 686 | return add(other, self) |
| 687 | |
| 688 | def __mul__(self, i): |
| 689 | """ |