Create a cursor.
(self)
| 735 | self.root._visit_preorder_by_node(visit) |
| 736 | |
| 737 | def cursor(self) -> Cursor[KT, ET]: |
| 738 | """Create a cursor.""" |
| 739 | return Cursor(self) |
| 740 | |
| 741 | def register_cursor(self, cursor: Cursor) -> None: |
| 742 | """Register a cursor for the automatic parking service.""" |