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

Method __mul__

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

2104 return asarray(add(numpy.asarray(other), self))
2105
2106 def __mul__(self, i):
2107 """
2108 Return (self * i), that is string multiple concatenation,
2109 element-wise.
2110
2111 See also
2112 --------
2113 multiply
2114 """
2115 return asarray(multiply(self, i))
2116
2117 def __rmul__(self, i):
2118 """

Callers

nothing calls this directly

Calls 2

multiplyFunction · 0.85
asarrayFunction · 0.70

Tested by

no test coverage detected