(self, index: int, value: 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) |
| 107 | chunk <<= value |
| 108 | |
| 109 | @property |
| 110 | def freed(self) -> bool: |
nothing calls this directly
no test coverage detected