MCPcopy Index your code
hub / github.com/numpy/numpy / iscomplexfunction

Function iscomplexfunction

numpy/f2py/auxfuncs.py:354–363  ·  view source on GitHub ↗
(rout)

Source from the content-addressed store, hash-verified

352
353
354def iscomplexfunction(rout):
355 if not isfunction(rout):
356 return 0
357 if 'result' in rout:
358 a = rout['result']
359 else:
360 a = rout['name']
361 if a in rout['vars']:
362 return iscomplex(rout['vars'][a])
363 return 0
364
365
366def iscomplexfunction_warn(rout):

Callers 2

cb_routsign2mapFunction · 0.85
iscomplexfunction_warnFunction · 0.85

Calls 2

isfunctionFunction · 0.70
iscomplexFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…