Get a mutable reference to the adjacency buffer. This buffer can be used for temporary storage during adjacency iteration. The caller should clear it before use.
(&mut self)
| 654 | /// This buffer can be used for temporary storage during adjacency iteration. |
| 655 | /// The caller should clear it before use. |
| 656 | pub fn adjacency_buffer(&mut self) -> &mut Vec<Position<NodeId>> { |
| 657 | &mut self.adjacency_buffer |
| 658 | } |
| 659 | |
| 660 | /// Get a mutable reference to the traversal stack. |
| 661 | /// |
no outgoing calls