MCPcopy
hub / github.com/microsoft/JARVIS / multiply_

Function multiply_

easytool/data_funcqa/funchub/math.py:84–89  ·  view source on GitHub ↗
(args)

Source from the content-addressed store, hash-verified

82
83# 3. multiply
84def multiply_(args):
85
86 res = args[0]
87 for arg in args[1:]:
88 res *= arg
89 return normalize(res)
90
91# 4. divide
92def divide_(args):

Callers

nothing calls this directly

Calls 1

normalizeFunction · 0.85

Tested by

no test coverage detected