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

Function l_and

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

Source from the content-addressed store, hash-verified

600
601
602def l_and(*f):
603 l1, l2 = 'lambda v', []
604 for i in range(len(f)):
605 l1 = '%s,f%d=f[%d]' % (l1, i, i)
606 l2.append('f%d(v)' % (i))
607 return eval('%s:%s' % (l1, ' and '.join(l2)))
608
609
610def l_or(*f):

Callers 4

sign2mapFunction · 0.85
getcallprotoargumentFunction · 0.85
cb_rules.pyFile · 0.85
rules.pyFile · 0.85

Calls 1

joinMethod · 0.45

Tested by

no test coverage detected