MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / __rmul__

Method __rmul__

site-packages/numpy/core/defchararray.py:2117–2126  ·  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

2115 return asarray(multiply(self, i))
2116
2117 def __rmul__(self, i):
2118 """
2119 Return (self * i), that is string multiple concatenation,
2120 element-wise.
2121
2122 See also
2123 --------
2124 multiply
2125 """
2126 return asarray(multiply(self, i))
2127
2128 def __mod__(self, i):
2129 """

Callers

nothing calls this directly

Calls 2

multiplyFunction · 0.85
asarrayFunction · 0.70

Tested by

no test coverage detected