(self, split_every=False)
| 4801 | # Methods and properties of Series that are not implemented on Index |
| 4802 | |
| 4803 | def count(self, split_every=False): |
| 4804 | return new_collection(IndexCount(self, split_every)) |
| 4805 | |
| 4806 | @property # type: ignore[misc] |
| 4807 | def index(self): |
no test coverage detected