(self, keep: DropKeep = "first")
| 1625 | |
| 1626 | @final |
| 1627 | def _duplicated(self, keep: DropKeep = "first") -> npt.NDArray[np.bool_]: |
| 1628 | arr = self._values |
| 1629 | if isinstance(arr, ExtensionArray): |
| 1630 | return arr.duplicated(keep=keep) |
| 1631 | return algorithms.duplicated(arr, keep=keep) |
| 1632 | |
| 1633 | def _arith_method(self, other, op): |
| 1634 | res_name = ops.get_op_result_name(self, other) |
no test coverage detected