(self, split_every=False)
| 4761 | # Methods and properties of Series that are not implemented on Index |
| 4762 | |
| 4763 | def count(self, split_every=False): |
| 4764 | return new_collection(IndexCount(self, split_every)) |
| 4765 | |
| 4766 | @property # type: ignore[misc] |
| 4767 | def index(self): |
no test coverage detected