(x, v1, v2)
| 63 | |
| 64 | @derived_from(np.ma) |
| 65 | def masked_inside(x, v1, v2): |
| 66 | x = asanyarray(x) |
| 67 | return x.map_blocks(np.ma.masked_inside, v1, v2) |
| 68 | |
| 69 | |
| 70 | @derived_from(np.ma) |
nothing calls this directly
no test coverage detected
searching dependent graphs…