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

Function l_or

numpy/f2py/auxfuncs.py:610–615  ·  view source on GitHub ↗
(*f)

Source from the content-addressed store, hash-verified

608
609
610def l_or(*f):
611 l1, l2 = 'lambda v', []
612 for i in range(len(f)):
613 l1 = '%s,f%d=f[%d]' % (l1, i, i)
614 l2.append('f%d(v)' % (i))
615 return eval('%s:%s' % (l1, ' or '.join(l2)))
616
617
618def l_not(f):

Callers 7

buildhooksFunction · 0.85
cb_routsign2mapFunction · 0.85
isintent_hideFunction · 0.85
getcallprotoargumentFunction · 0.85
analyzevarsFunction · 0.85
cb_rules.pyFile · 0.85
rules.pyFile · 0.85

Calls 1

joinMethod · 0.45

Tested by

no test coverage detected