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

Function islogicalfunction

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

Source from the content-addressed store, hash-verified

319
320
321def islogicalfunction(rout):
322 if not isfunction(rout):
323 return 0
324 if 'result' in rout:
325 a = rout['result']
326 else:
327 a = rout['name']
328 if a in rout['vars']:
329 return islogical(rout['vars'][a])
330 return 0
331
332
333def islong_longfunction(rout):

Callers 1

createfuncwrapperFunction · 0.85

Calls 2

islogicalFunction · 0.85
isfunctionFunction · 0.70

Tested by

no test coverage detected