(self, index: int)
| 100 | yield self + i |
| 101 | |
| 102 | def __getitem__(self, index: int) -> "AllocatedArrayPointer[T]": |
| 103 | return self._get_chunk_at(index) |
| 104 | |
| 105 | def __setitem__(self, index: int, value: T) -> None: |
| 106 | chunk = self._get_chunk_at(index) |
nothing calls this directly
no test coverage detected