(self)
| 780 | |
| 781 | class ArrayExtensionArray(pa.ExtensionArray): |
| 782 | def __array__(self): |
| 783 | zero_copy_only = _is_zero_copy_only(self.storage.type, unnest=True) |
| 784 | return self.to_numpy(zero_copy_only=zero_copy_only) |
| 785 | |
| 786 | def __getitem__(self, i): |
| 787 | return self.storage[i] |
no test coverage detected