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

Function islong_longfunction

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

Source from the content-addressed store, hash-verified

331
332
333def islong_longfunction(rout):
334 if not isfunction(rout):
335 return 0
336 if 'result' in rout:
337 a = rout['result']
338 else:
339 a = rout['name']
340 if a in rout['vars']:
341 return islong_long(rout['vars'][a])
342 return 0
343
344
345def islong_doublefunction(rout):

Callers

nothing calls this directly

Calls 2

islong_longFunction · 0.85
isfunctionFunction · 0.70

Tested by

no test coverage detected