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

Function islogicalfunction

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

Source from the content-addressed store, hash-verified

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

Callers 1

createfuncwrapperFunction · 0.85

Calls 2

islogicalFunction · 0.85
isfunctionFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…