(self, array, func: Callable, dtype: np.typing.DTypeLike | None)
| 54 | """ |
| 55 | |
| 56 | def __init__(self, array, func: Callable, dtype: np.typing.DTypeLike | None): |
| 57 | assert not is_chunked_array(array) |
| 58 | self.array = indexing.as_indexable(array) |
| 59 | self.func = func |
| 60 | self._dtype = dtype |
| 61 | |
| 62 | @property |
| 63 | def dtype(self) -> np.dtype: |
nothing calls this directly
no test coverage detected