Run `eval_format` with the value at `index`. For example, if `eval_format` is "{}.get()", this will evaluate "{self[index]}.get()".
(self, index, eval_format)
| 528 | return self._data[index] |
| 529 | |
| 530 | def eval_at(self, index, eval_format): |
| 531 | """ |
| 532 | Run `eval_format` with the value at `index`. |
| 533 | |
| 534 | For example, if `eval_format` is "{}.get()", this will evaluate |
| 535 | "{self[index]}.get()". |
| 536 | """ |
| 537 | self._check_index(index) |
| 538 | return gdb.parse_and_eval( |
| 539 | eval_format.format(for_evaluation(self._data[index]))) |
| 540 | |
| 541 | def iter_eval(self, eval_format): |
| 542 | data_eval = for_evaluation(self._data) |
nothing calls this directly
no test coverage detected