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

Function isintent_in

numpy/f2py/auxfuncs.py:430–445  ·  view source on GitHub ↗
(var)

Source from the content-addressed store, hash-verified

428
429
430def isintent_in(var):
431 if 'intent' not in var:
432 return 1
433 if 'hide' in var['intent']:
434 return 0
435 if 'inplace' in var['intent']:
436 return 0
437 if 'in' in var['intent']:
438 return 1
439 if 'out' in var['intent']:
440 return 0
441 if 'inout' in var['intent']:
442 return 0
443 if 'outin' in var['intent']:
444 return 0
445 return 1
446
447
448def isintent_inout(var):

Callers 3

getarrdimsFunction · 0.85
getpydocsignFunction · 0.85
createfuncwrapperFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…