Return (self + other), that is string concatenation, element-wise for a pair of array_likes of str or unicode. See Also -------- add
(self, other)
| 664 | return less(self, other) |
| 665 | |
| 666 | def __add__(self, other): |
| 667 | """ |
| 668 | Return (self + other), that is string concatenation, |
| 669 | element-wise for a pair of array_likes of str or unicode. |
| 670 | |
| 671 | See Also |
| 672 | -------- |
| 673 | add |
| 674 | """ |
| 675 | return add(self, other) |
| 676 | |
| 677 | def __radd__(self, other): |
| 678 | """ |