MCPcopy Index your code
hub / github.com/pydata/xarray / __init__

Method __init__

xarray/coding/common.py:56–60  ·  view source on GitHub ↗
(self, array, func: Callable, dtype: np.typing.DTypeLike | None)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 1

is_chunked_arrayFunction · 0.90

Tested by

no test coverage detected