(self)
| 924 | return self.array.get_duck_array() |
| 925 | |
| 926 | async def async_get_duck_array(self): |
| 927 | return await self.array.async_get_duck_array() |
| 928 | |
| 929 | def _oindex_get(self, indexer: OuterIndexer): |
| 930 | return type(self)(_wrap_numpy_scalars(self.array.oindex[indexer])) |
nothing calls this directly
no test coverage detected