Return an iterator that generates this feature structure, and each feature structure it contains. Each feature structure will be generated exactly once.
(self)
| 447 | return self._find_reentrances({})[id(self)] |
| 448 | |
| 449 | def walk(self): |
| 450 | """ |
| 451 | Return an iterator that generates this feature structure, and |
| 452 | each feature structure it contains. Each feature structure will |
| 453 | be generated exactly once. |
| 454 | """ |
| 455 | return self._walk(set()) |
| 456 | |
| 457 | def _walk(self, visited): |
| 458 | """ |