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

Method mask

numpy/ma/core.py:3584–3591  ·  view source on GitHub ↗

Current mask.

(self)

Source from the content-addressed store, hash-verified

3582
3583 @property
3584 def mask(self):
3585 """ Current mask. """
3586
3587 # We could try to force a reshape, but that wouldn't work in some
3588 # cases.
3589 # Return a view so that the dtype and shape cannot be changed in place
3590 # This still preserves nomask by identity
3591 return self._mask.view()
3592
3593 @mask.setter
3594 def mask(self, value):

Callers

nothing calls this directly

Calls 2

__setmask__Method · 0.95
viewMethod · 0.45

Tested by

no test coverage detected