(self)
| 827 | @Appender(base.IndexOpsMixin.array.__doc__) # type: ignore[prop-decorator] |
| 828 | @property |
| 829 | def array(self) -> ExtensionArray: |
| 830 | arr = self._mgr.array_values() |
| 831 | # TODO decide on read-only https://github.com/pandas-dev/pandas/issues/63099 |
| 832 | # arr = arr.view() |
| 833 | # arr._readonly = True |
| 834 | return arr |
| 835 | |
| 836 | def __len__(self) -> int: |
| 837 | """ |