Returns the filled array, or True if masked.
(x)
| 7737 | |
| 7738 | """ |
| 7739 | def fmask(x): |
| 7740 | "Returns the filled array, or True if masked." |
| 7741 | if x is masked: |
| 7742 | return True |
| 7743 | return filled(x) |
| 7744 | |
| 7745 | def nmask(x): |
| 7746 | "Returns the mask, True if ``masked``, False if ``nomask``." |