Returns the filled array, or True if masked.
(x)
| 8066 | |
| 8067 | """ |
| 8068 | def fmask(x): |
| 8069 | "Returns the filled array, or True if masked." |
| 8070 | if x is masked: |
| 8071 | return True |
| 8072 | return filled(x) |
| 8073 | |
| 8074 | def nmask(x): |
| 8075 | "Returns the mask, True if ``masked``, False if ``nomask``." |