Returns a copy of the masked record.
(self)
| 380 | self._hardmask = False |
| 381 | |
| 382 | def copy(self): |
| 383 | """ |
| 384 | Returns a copy of the masked record. |
| 385 | |
| 386 | """ |
| 387 | copied = self._data.copy().view(type(self)) |
| 388 | copied._mask = self._mask.copy() |
| 389 | return copied |
| 390 | |
| 391 | def tolist(self, fill_value=None): |
| 392 | """ |