The array that Series.array returns. Always an ExtensionArray.
(self)
| 1595 | |
| 1596 | @property |
| 1597 | def array_values(self) -> ExtensionArray: |
| 1598 | """ |
| 1599 | The array that Series.array returns. Always an ExtensionArray. |
| 1600 | """ |
| 1601 | raise AbstractMethodError(self) |
| 1602 | |
| 1603 | def get_values(self, dtype: DtypeObj | None = None) -> np.ndarray: |
| 1604 | """ |
no test coverage detected