(self, amount: int)
| 74 | return f"AllocatedPointer(address={self.address}, size={self.size})" |
| 75 | |
| 76 | def __add__(self, amount: int) -> AllocatedPointer[T]: |
| 77 | return self._indexed(amount) |
| 78 | |
| 79 | def __sub__(self, amount: int) -> AllocatedPointer[T]: |
| 80 | return self._indexed(amount) |