MCPcopy Create free account
hub / github.com/numpy/numpy / __rmul__

Method __rmul__

numpy/core/defchararray.py:2213–2222  ·  view source on GitHub ↗

Return (self * i), that is string multiple concatenation, element-wise. See Also -------- multiply

(self, i)

Source from the content-addressed store, hash-verified

2211 return asarray(multiply(self, i))
2212
2213 def __rmul__(self, i):
2214 """
2215 Return (self * i), that is string multiple concatenation,
2216 element-wise.
2217
2218 See Also
2219 --------
2220 multiply
2221 """
2222 return asarray(multiply(self, i))
2223
2224 def __mod__(self, i):
2225 """

Callers

nothing calls this directly

Calls 2

asarrayFunction · 0.70
multiplyFunction · 0.70

Tested by

no test coverage detected