Returns the mask, True if ``masked``, False if ``nomask``.
(x)
| 8072 | return filled(x) |
| 8073 | |
| 8074 | def nmask(x): |
| 8075 | "Returns the mask, True if ``masked``, False if ``nomask``." |
| 8076 | if x is masked: |
| 8077 | return True |
| 8078 | return getmask(x) |
| 8079 | # Get the indices. |
| 8080 | c = filled(indices, 0) |
| 8081 | # Get the masks. |