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

Function _recursive_mask_or

numpy/ma/core.py:1749–1756  ·  view source on GitHub ↗
(m1, m2, newmask)

Source from the content-addressed store, hash-verified

1747
1748
1749def _recursive_mask_or(m1, m2, newmask):
1750 names = m1.dtype.names
1751 for name in names:
1752 current1 = m1[name]
1753 if current1.dtype.names is not None:
1754 _recursive_mask_or(current1, m2[name], newmask[name])
1755 else:
1756 umath.logical_or(current1, m2[name], newmask[name])
1757
1758
1759def mask_or(m1, m2, copy=False, shrink=True):

Callers 1

mask_orFunction · 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…