(a)
| 114 | |
| 115 | @derived_from(np.ma) |
| 116 | def getmaskarray(a): |
| 117 | a = asanyarray(a) |
| 118 | return a.map_blocks(np.ma.getmaskarray) |
| 119 | |
| 120 | |
| 121 | def _masked_array(data, mask=np.ma.nomask, masked_dtype=None, **kwargs): |
no test coverage detected
searching dependent graphs…