(self, array: duckarray[Any, Any])
| 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: |
nothing calls this directly
no test coverage detected