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

Method __mul__

numpy/core/defchararray.py:2202–2211  ·  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

2200 return asarray(add(numpy.asarray(other), self))
2201
2202 def __mul__(self, i):
2203 """
2204 Return (self * i), that is string multiple concatenation,
2205 element-wise.
2206
2207 See Also
2208 --------
2209 multiply
2210 """
2211 return asarray(multiply(self, i))
2212
2213 def __rmul__(self, i):
2214 """

Callers

nothing calls this directly

Calls 2

asarrayFunction · 0.70
multiplyFunction · 0.70

Tested by

no test coverage detected