Read string from memory.
(self, address: int)
| 120 | return value |
| 121 | |
| 122 | def read_string(self, address: int) -> Optional[str]: |
| 123 | """Read string from memory. |
| 124 | """ |
| 125 | |
| 126 | return self.ql.mem.string(address) |
| 127 | |
| 128 | def try_read_string(self, address: int) -> Optional[str]: |
| 129 | """Attempt to read a string from memory. |