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

Function l_and

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

Source from the content-addressed store, hash-verified

625
626
627def l_and(*f):
628 l1, l2 = 'lambda v', []
629 for i in range(len(f)):
630 l1 = f'{l1},f{i}=f[{i}]'
631 l2.append(f'f{i}(v)')
632 return eval(f"{l1}:{' and '.join(l2)}")
633
634
635def l_or(*f):

Callers 4

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

Calls 1

joinMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…