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

Function islogicalfunction

site-packages/numpy/f2py/auxfuncs.py:293–302  ·  view source on GitHub ↗
(rout)

Source from the content-addressed store, hash-verified

291
292
293def islogicalfunction(rout):
294 if not isfunction(rout):
295 return 0
296 if 'result' in rout:
297 a = rout['result']
298 else:
299 a = rout['name']
300 if a in rout['vars']:
301 return islogical(rout['vars'][a])
302 return 0
303
304
305def islong_longfunction(rout):

Callers 1

createfuncwrapperFunction · 0.85

Calls 2

islogicalFunction · 0.85
isfunctionFunction · 0.70

Tested by

no test coverage detected