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

Method __init__

xarray/core/indexing.py:914–916  ·  view source on GitHub ↗
(self, array: duckarray[Any, Any])

Source from the content-addressed store, hash-verified

912 __slots__ = ("_copied", "array")
913
914 def __init__(self, array: duckarray[Any, Any]):
915 self.array = as_indexable(array)
916 self._copied = False
917
918 def _ensure_copied(self):
919 if not self._copied:

Callers

nothing calls this directly

Calls 1

as_indexableFunction · 0.90

Tested by

no test coverage detected