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

Method __radd__

numpy/_core/defchararray.py:677–686  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

addFunction · 0.85

Tested by

no test coverage detected