MCPcopy Index your code
hub / github.com/numpy/numpy / __add__

Method __add__

numpy/_core/defchararray.py:666–675  ·  view source on GitHub ↗

Return (self + other), that is string concatenation, element-wise for a pair of array_likes of str or unicode. See Also -------- add

(self, other)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 1

addFunction · 0.85

Tested by

no test coverage detected