(self, amount: int)
| 59 | ) |
| 60 | |
| 61 | def __sub__(self, amount: int): |
| 62 | return StackAllocatedPointer( |
| 63 | self.ensure() - amount, |
| 64 | self.size, |
| 65 | self.assigned, |
| 66 | ) |
| 67 | |
| 68 | def free(self) -> None: |
| 69 | raise ValueError( |
nothing calls this directly
no test coverage detected