(&mut self, id: VertexId)
| 258 | /// Get a mutable span by ID, returning None if out of bounds. |
| 259 | #[inline] |
| 260 | pub fn get_vertex_mut(&mut self, id: VertexId) -> Option<&mut AliveVertex> { |
| 261 | self.vertices.get_mut(id.index()) |
| 262 | } |
| 263 | |
| 264 | /// Iterate over a span's children. |
| 265 | /// |
no test coverage detected