(&mut self, id: NodeId)
| 438 | impl std::ops::IndexMut<NodeId> for Document { |
| 439 | #[inline] |
| 440 | fn index_mut(&mut self, id: NodeId) -> &mut Node { |
| 441 | &mut self.nodes[id.get()] |
| 442 | } |
| 443 | } |
| 444 | |
| 445 | /// Extract a CSS identifier (class/id/tag name) from a byte slice. |