Get the children of a position.
(&self, parent: &Position<NodeId>)
| 579 | |
| 580 | /// Get the children of a position. |
| 581 | pub fn get_children(&self, parent: &Position<NodeId>) -> Option<&[Position<NodeId>]> { |
| 582 | self.children.get(parent).map(|v| v.as_slice()) |
| 583 | } |
| 584 | |
| 585 | // Conflict Tracking |
| 586 |