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

Method __init__

xarray/core/utils.py:620–623  ·  view source on GitHub ↗
(self, values: Iterable[T] | None = None)

Source from the content-addressed store, hash-verified

618 __slots__ = ("_d",)
619
620 def __init__(self, values: Iterable[T] | None = None):
621 self._d = {}
622 if values is not None:
623 self.update(values)
624
625 # Required methods for MutableSet
626

Callers

nothing calls this directly

Calls 1

updateMethod · 0.95

Tested by

no test coverage detected